@extends('layouts.app') @section('title', 'Initiate Exit') @section('breadcrumbs') @endsection @section('content')

Initiate Exit Process

@csrf
{{-- Employee Selection --}}
@error('employee_id')

{{ $message }}

@enderror @if($employees->count() === 0)

No eligible employees found. Employees with active exit processes are excluded.

@endif
{{-- Exit Type --}}
@foreach($exitTypes as $key => $label) @endforeach
@error('exit_type')

{{ $message }}

@enderror
{{-- Initiated Date --}}
@error('initiated_date')

{{ $message }}

@enderror
{{-- Notice Period --}}
@error('notice_period_days')

{{ $message }}

@enderror
{{-- Last Working Date --}}

Leave blank to auto-calculate from notice period

@error('last_working_date')

{{ $message }}

@enderror
{{-- Reason --}}
@error('exit_reason')

{{ $message }}

@enderror
{{-- Exit Interview Notes --}}
@error('exit_interview_notes')

{{ $message }}

@enderror
Cancel
@push('scripts') @endpush @endsection