@php //dd($errors); @endphp @include('includes.header')
@if(session('error'))

{{session('error')}}

@endif

Add Consultant

{{csrf_field()}}
@if ($errors->has('fname')) {{ $errors->first('fname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('lname')) {{ $errors->first('lname') }} @endif
@if ($errors->has('mobile') || session('mobile_error')) {{ ($errors->has('mobile'))?$errors->first('mobile'):session('mobile_error') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('area')) {{ $errors->first('area') }} @endif
@if ($errors->has('company')) {{ $errors->first('company') }} @endif
@if ($errors->has('nic') || session('nic_error')) {{ ($errors->has('nic'))?$errors->first('nic'):session('nic_error') }} @endif
Cancel
@include('includes.footer')