{{ html()->label('From Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Job Post') }}
{{ html()->label('For Applicant')->class('form-label') }}
{{ html()->select('job_application_id', $jobApplicationLists)->class('form-select select2')->placeholder('Applicant') }}
{{ html()->label('For Department')->class('form-label') }}
{{ html()->select('department_id', $departmentLists)->class('form-select select2')->placeholder('Department') }}
{{ html()->label('For Designation')->class('form-label') }}
{{ html()->select('designation_id', $designationLists)->class('form-select select2')->placeholder('Designation') }}
{{ html()->label('Working Shift')->class('form-label') }}
{{ html()->select('work_shift_id', $workShiftLists)->class('form-select select2')->placeholder('Working Shift') }}
{{ html()->label('Applicant Name')->class('form-label') }}
{{ html()->text('applicant_name')->class('form-control')->placeholder('Full Name') }}
{{ html()->label('Offered Salary')->class('form-label') }}
{{ html()->number('salary')->class('form-control')->placeholder('Offered Salary') }}
{{ html()->label('Joining Date')->class('form-label') }}
{{ html()->text('joining_date')->class('form-control flatpickr-date') }}
{{ html()->label('Issued Date')->class('form-label') }}
{{ html()->text('issued_date')->class('form-control flatpickr-date') }}
{{ html()->label('Issued By')->class('form-label') }}
{{ html()->select('issued_by', $employeeLists)->class('form-select select2')->placeholder('Issued By') }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}