@push('title') Create Employee @endpush @if (session('success')) {{ env('APP_NAME') }} Alerts {{ session('success') }} @endif @if (session('info')) {{ env('APP_NAME') }} Alerts {{ session('info') }} @endif @if (session('warning')) {{ env('APP_NAME') }} Alerts {{ session('warning') }} @endif @if (session('danger')) {{ env('APP_NAME') }} Alerts {{ session('danger') }} @endif @if ($errors->any()) {{ env('APP_NAME') }} Validation Errors @if ($errors->count() == 1) {{ $errors->first() }} @else @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @endif Add New Employee @csrf Personal Information Title * Select @foreach (['Mr', 'Mrs', 'Miss', 'Ms', 'Dr', 'Prof', 'Rev', 'Sir/Dame', 'Mx'] as $t) {{ $t }} @endforeach Name With Initials * Full Name * Gender * Select @foreach (['Male', 'Female', 'Other'] as $g) {{ $g }} @endforeach Date of Birth * Marital Status * @foreach (['single', 'married', 'separated', 'divorced', 'widowed'] as $m) {{ ucfirst($m) }} @endforeach Nationality * NIC Number * Mobile Number * Landline Number Email NIC File * Profile Picture Employment Details Date of Joining * Status * @foreach (['active', 'inactive', 'resigned', 'terminated'] as $st) {{ ucfirst($st) }} @endforeach Salary Type * Per Day Monthly Start Basic Salary * Start Allowance * Site * roles[0]->name !== 'admin')> -- Select Site -- @foreach ($sites as $site) roles[0]->name !== 'admin' && Auth::user()->site_id == $site->id)> {{ $site->name }} @endforeach Reporting User * roles[0]->name !== 'admin')> -- Select Reporting User -- @foreach ($users as $user) roles[0]->name !== 'admin' && Auth::id() == $user->id)> {{ $user->name }} @endforeach Is Probation? * Select A Option Yes No Probation Period (Months) Permanent Date * Employee Status Active Inactive Resigned Terminated Address Information Permanent Address * Current Address Emergency Contact Name * Relationship * Phone * Bank Information Bank Name * Branch * Account Number * Create Employee