diff --git a/app/Filament/Resources/Employees/Schemas/EmployeeForm.php b/app/Filament/Resources/Employees/Schemas/EmployeeForm.php index fb70d2c..f57f3ef 100644 --- a/app/Filament/Resources/Employees/Schemas/EmployeeForm.php +++ b/app/Filament/Resources/Employees/Schemas/EmployeeForm.php @@ -99,9 +99,13 @@ class EmployeeForm ->native(false), DatePicker::make('hire_date') ->label(__('hr.fields.hire_date')) - ->required(), + ->required() + ->native(false), + DatePicker::make('termination_date') - ->label(__('hr.fields.termination_date')), + ->label(__('hr.fields.termination_date')) + ->native(false), + Textarea::make('notes') ->label(__('hr.fields.notes')) ->rows(4)