@include('layouts.style')
@include('layouts.sidebar')
@include('layouts.header')
{{ isset($propertyType->id) ? 'Edit Property Master' : 'Add Employee Master' }}
Setup Employee Information
@include('layouts.success_toast')
@csrf
@if(auth()->check() && auth()->user()->role == 'Hotel')
@else
Hotel
@foreach ($hotelList as $item)
id ? 'selected' : '' }}>{{ $item->name }}
@endforeach
@endif
Name
Email
Mobile No.
Joining Date
Department
@foreach ($departmentList as $item)
id ? 'selected' : '' }}>{{ $item->title }}
@endforeach
{{--
--}}
Aadhaar Number
Pan Number
Select ID Type
-- SELECT ROOM TYPE --
Aadhaar Card
PAN Card
Driving License
Voter ID
Passport
Government ID
Company ID
Residence Permit
Student ID
Visa Document
Upload ID Proof
Emergency Contact Name
Emergency Contact Relation
-- SELECT RELATION --
Father
Mother
Brother
Sister
Spouse
Husband
Wife
Son
Daughter
Guardian
Friend
Relative
Other
Emergency Contact Phone
Status
--Select Status--
@if(isset($propertyType->is_active))
is_active == 1 ? 'selected' : '' }}>Active
is_active == 0 ? 'selected' : '' }}>Inactive
@else
Active
Inactive
@endif
Save
@include('layouts.footer')
@include('layouts.scripts')