@extends('layouts.app') @section('title', 'buyer | '.config('app.name')) @section('style') @endsection @section('content')

Update Profile

@csrf
@if($errors->has('licenseNo'))
  • {{$errors->first('licenseNo')}}
@endif
@if($errors->has('name'))
  • {{$errors->first('name')}}
@endif
{{--
@if($errors->has('name'))
  • {{$errors->first('name')}}
@endif
--}} {{--
@if($errors->has('reviewImage'))
  • {{$errors->first('reviewImage')}}
@endif
--}}
@if($errors->has('company'))
  • {{$errors->first('company')}}
@endif
@if($errors->has('address'))
  • {{$errors->first('address')}}
@endif
@if($errors->has('phone'))
  • {{$errors->first('phone')}}
@endif
@if($errors->has('city'))
  • {{$errors->first('city')}}
@endif
@if($errors->has('state'))
  • {{$errors->first('state')}}
@endif
@if($errors->has('country'))
  • {{$errors->first('country')}}
@endif
@if($errors->has('currentPassword'))
  • {{$errors->first('currentPassword')}}
@endif
@if($errors->has('newPassword'))
  • {{$errors->first('newPassword')}}
@endif
@if($errors->has('confirmPassword'))
  • {{$errors->first('confirmPassword')}}
@endif
@endsection @section('script') @endsection