@extends('layouts.app') @section('content')

Buyer Details

Back
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif
{{ csrf_field() }}
@if ($errors->has('fname')) {{ $errors->first('fname') }} @endif
@if ($errors->has('lname')) {{ $errors->first('lname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('psswrd')) {{ $errors->first('psswrd') }} @endif
@if ($errors->has('phn_no')) {{ $errors->first('phn_no') }} @endif
@if ($errors->has('mobile_no')) {{ $errors->first('mobile_no') }} @endif
@if($users->role == 1 || $users->role == 2 || $users->role == 3)
@if ($errors->has('licence_number')) {{ $errors->first('licence_number') }} @endif
@if ($errors->has('abn_number')) {{ $errors->first('abn_number') }} @endif
@if ($errors->has('web_address')) {{ $errors->first('web_address') }} @endif
@if ($errors->has('agent_id')) {{ $errors->first('agent_id') }} @endif
@endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('zipcode')) {{ $errors->first('zipcode') }} @endif
@if($users->role == 1 || $users->role == 2 || $users->role == 3)
@if ($errors->has('house_no')) {{ $errors->first('house_no') }} @endif
@if ($errors->has('property')) {{ $errors->first('property') }} @endif
@endif
@if ($errors->has('profile_image')) {{ $errors->first('profile_image') }} @endif
@if ($errors->has('desc')) {{ $errors->first('desc') }} @endif
@endsection @section('scripts') @endsection