⚧ Gender *
Select Gender
@foreach($genders as $gender)
id ? 'selected' : '' }} {{ isset($details) && $details->gender == $gender->id ? 'selected' : '' }}>
{{ $gender->gender_name }}
@endforeach
Please select a Gender.
📍 Address *
Please enter the address.
@if(isset($details) && !empty($details->photo_path) && file_exists(public_path($details->photo)))
📷 Current Photo of the Employee/Worker
*Upload a new image to replace the current photo.
@endif
📷 Photo (Optional)
🏢 Department/Section *
Select Department
@foreach($departments as $department)
id ? 'selected' : '' }} {{ isset($details) && $details->department == $department->id ? 'selected' : '' }}>
{{ $department->department_name }}
@endforeach
Please Select a Designation.
💼 Designation *
Select Designation
@foreach($designations as $designation)
id ? 'selected' : '' }} {{ isset($details) && $details->designation == $designation->id ? 'selected' : '' }}>
{{ $designation->designation_name }}
@endforeach
Please Select a Designation.
👥 Select Type *
Select Type
@foreach($employee_types as $employee_type)
id ? 'selected' : '' }} {{ isset($details) && $details->employee_type == $employee_type->id ? 'selected' : '' }}>
{{ $employee_type->employee_type_name }}
@endforeach
Please select a Type.
⏰ Attendance Type *
Select Attendance Type
@foreach($attendance_types as $attendance_type)
id ? 'selected' : '' }} {{ isset($details) && $details->attendance_type == $attendance_type->id ? 'selected' : '' }}>
{{ $attendance_type->attendance_type_name }}
@endforeach
Please select a Attendance Type.
👨💼 Reporting To *
Select Reporting To
@foreach($reporting_tos as $reporting_to)
id ? 'selected' : '' }} {{ isset($details) && $details->reporting_to == $reporting_to->id ? 'selected' : '' }}>
{{ $reporting_to->designation_name }}
@endforeach
Please select a Reporting To.