@csrf

{{ __('messages.update_employee') }}

@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@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('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('nationality'))
{{ $errors->first('nationality') }}
@endif
@if ($errors->has('license_number'))
{{ $errors->first('license_number') }}
@endif
@if ($errors->has('emergency_contact'))
{{ $errors->first('emergency_contact') }}
@endif
@if ($errors->has('gross_salary'))
{{ $errors->first('gross_salary') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if ($errors->has('document'))
{{ $errors->first('document') }}
@endif
@if ($errors->has('license_image'))
{{ $errors->first('license_image') }}
@endif
@if(!empty($employee->image))
{{ __('messages.profile_image') }}
@endif @if(!empty($employee->document))
{{ __('messages.document') }}
@endif @if(!empty($employee->license_image))
{{ __('messages.license_image') }}
@endif