{{ $errors->first('gender') }}
@php
$bloodGroups = ['A+', 'A-', 'B+', 'B-', 'O+', 'O-', 'AB+', 'AB-'];
@endphp
{{ $errors->first('blood_group') }}
{{ $errors->first('residential_address') }}
{{ $errors->first('address') }}
{!! Form::label('profile_photo', 'Profile Photo', ['class' => 'form-label']) !!}
{!! Form::file('profile_photo', [
'class' => 'form-control',
'id' => 'profile_photo',
'accept' => 'image/jpeg,image/png,image/jpg',
'data-parsley-max-file-size' => '3',
'data-parsley-file-extension' => 'jpg,jpeg,png',
'data-parsley-errors-container' => '#profile_photo_error',
]) !!}
(Allowed file types: JPG, JPEG, PNG, Max:
3MB)
@if (isset($employeeMasterDetail->loginUser->profile_photo_path) &&
!empty($employeeMasterDetail->loginUser->profile_photo_path) &&
file_exists(public_path('storage/' . $employeeMasterDetail->loginUser->profile_photo_path)))
 }})
@else
 }})
@endif
{{ $errors->first('employee_department_id') }}
{{ $errors->first('employee_designation_id') }}
{{ $errors->first('employee_role_id') }}
{{ $errors->first('shift_type_id') }}
{{ $errors->first('reporting_person_id') }}
{{ $errors->first('head_manager') }}
@php
$selectedOptions = explode(
',',
old('check_in_option', $employeeMasterDetail->check_in_option),
);
@endphp
{{ $errors->first('check_in_option') }}
{{ $errors->first('country') }}
{{ $errors->first('region') }}
{{ $errors->first('location_id') }}
{{ $errors->first('job_status') }}