Drivers & Staff

Manage driver accounts, employee IDs, phone contacts, and access status.

@if(!$showForm) @else @endif
@if($showForm)

{{ $editingId ? 'Edit Employee & Login Credentials' : 'Add New Employee / Driver' }}

Provide personal info, employee code ID, password, and contact numbers.

Cancel

Employee Portal Login Credentials

Male Female Other
Profile Picture @if($profile_pic) @elseif($existingPicPath) @endif
Active Inactive
@if(!$editingId) @endif
@endif @if(!$showForm)
@forelse($employees as $emp) @empty @endforelse
Employee ID Name & Profile Age / DOB Contact Details City / Location Status Actions
{{ $emp->employee_code ?? ('EMP-'.$emp->id) }} User Account Linked
@if($emp->profile_pic)
@else
{{ strtoupper(substr($emp->first_name, 0, 1)) }}
@endif
{{ $emp->full_name }} {{ $emp->gender }}
@if($emp->age) {{ $emp->age }} Years {{ $emp->dob ? $emp->dob->format('d M Y') : '' }} @else @endif
Ph: {{ $emp->mobile_number }}
@if($emp->email)
{{ $emp->email }}
@endif
{{ $emp->city ?: '—' }} @if($emp->state) {{ $emp->state }} @endif

No employee records found.

@if($employees->hasPages())
{{ $employees->links() }}
@endif
@endif