StocksNew/Modules/Recruit/resources/views/partials/offerletters/action.blade.php

67 lines
2.8 KiB
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<div class="row gy-3">
<div class="col-lg-4 col-md-6">
{{ html()->label('From Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Job Post') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Applicant')->class('form-label') }}
{{ html()->select('job_application_id', $jobApplicationLists)->class('form-select select2')->placeholder('Applicant') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Department')->class('form-label') }}
{{ html()->select('department_id', $departmentLists)->class('form-select select2')->placeholder('Department') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('For Designation')->class('form-label') }}
{{ html()->select('designation_id', $designationLists)->class('form-select select2')->placeholder('Designation') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Working Shift')->class('form-label') }}
{{ html()->select('work_shift_id', $workShiftLists)->class('form-select select2')->placeholder('Working Shift') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Applicant Name')->class('form-label') }}
{{ html()->text('applicant_name')->class('form-control')->placeholder('Full Name') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Offered Salary')->class('form-label') }}
{{ html()->number('salary')->class('form-control')->placeholder('Offered Salary') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Joining Date')->class('form-label') }}
<div class="input-group">
{{ html()->text('joining_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-event-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Issued Date')->class('form-label') }}
<div class="input-group">
{{ html()->text('issued_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-event-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Issued By')->class('form-label') }}
{{ html()->select('issued_by', $employeeLists)->class('form-select select2')->placeholder('Issued By') }}
</div>
<div class="col-lg-12 col-md-12">
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control ckeditor-classic') }}
</div>
<x-form-buttons :editable='$editable' label="Add" href="{{ route('offerLetter.index') }}" />
</div>