{{ html()->label('Job Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Schedule For') }}
{{ html()->label('Schedule Date')->class('form-label') }}
{{ html()->date('scheduled_date')->class('form-control flatpickr-date') }}
{{ html()->label('Schedule Time')->class('form-label') }}
{{ html()->text('scheduled_time')->class('form-control')->attributes(['data-provider' => 'timepickr', 'data-time-basic' => 'true']) }}
{{ html()->label('Interview Mode')->class('form-label') }}
{{ html()->select('interview_mode', ['online' => 'Online', 'physical' => 'Physical'])->class('form-select select2')->placeholder('Interview Mode') }}
{{ html()->label('Arranged by')->class('form-label') }}
{{ html()->select('arranged_by', $employeeLists)->class('form-select select2')->placeholder('Arranged By') }}
{{ html()->label('Arranged Date')->class('form-label') }}
{{ html()->date('arranged_date')->class('form-control flatpickr-date') }}
{{ html()->label('Interviewer')->class('form-label') }}
{{ html()->multiselect('interviewer_choices[]', $employeeLists)->placeholder('Pick Interviewer')->class('form-control select2')->value($task->interview_choices ?? null)->attributes(['multiple'])->required() }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
@push('js')
@endpush