{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id', $employeeList)->class('form-control select2 employee-dropdown')->placeholder('Employee Name')->required() }} {{ html()->div('Employee')->class('invalid-feedback') }}
{{ html()->label('Ranking Type')->class('form-label') }} {{ html()->select('type', $rankingTypeList)->class('form-control select2')->placeholder('Ranking Type')->required() }} {{ html()->div('Please select ranking type')->class('invalid-feedback') }}
{{ html()->label('Previous Designation')->class('form-label') }} {{ html()->select('old_designation_id', $designationList)->class('form-control select2 designation-dropdown')->placeholder('Previous Desgination')->required() }} {{ html()->div('Please select previous designation')->class('invalid-feedback') }}
{{ html()->label('New Department')->class('form-label') }} {{ html()->select('new_department_id', $departmentList)->class('form-control select2')->placeholder('New Department')->required() }} {{ html()->div('Please select new deparment')->class('invalid-feedback') }}
{{ html()->label('New Designation')->class('form-label') }} {{ html()->select('new_designation_id', $designationList)->class('form-control select2')->placeholder('New Desgination')->required() }} {{ html()->div('Please select new designation')->class('invalid-feedback') }}
{{ html()->label('Date')->class('form-label') }} {{ html()->text('date')->class('form-control flatpickr-date')->placeholder('Select Date')->required() }} {{ html()->div('Please select date')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control ckeditor-classic') }}
@push('js') @endpush