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

58 lines
2.5 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('Job Post')->class('form-label') }}
{{ html()->select('job_post_id', $jobPostLists)->class('form-select select2')->placeholder('Schedule For') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Schedule Date')->class('form-label') }}
<div class="input-group">
{{ html()->date('scheduled_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Schedule Time')->class('form-label') }}
<div class="input-group">
{{ html()->text('scheduled_time')->class('form-control')->attributes(['data-provider' => 'timepickr', 'data-time-basic' => 'true']) }}
<span class="input-group-text"><i class="ri-time-line"></i></span>
</div>
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Interview Mode')->class('form-label') }}
{{ html()->select('interview_mode', ['online' => 'Online', 'physical' => 'Physical'])->class('form-select select2')->placeholder('Interview Mode') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Arranged by')->class('form-label') }}
{{ html()->select('arranged_by', $employeeLists)->class('form-select select2')->placeholder('Arranged By') }}
</div>
<div class="col-lg-4 col-md-6">
{{ html()->label('Arranged Date')->class('form-label') }}
<div class="input-group">
{{ html()->date('arranged_date')->class('form-control flatpickr-date') }}
<span class="input-group-text"><i class="ri-calendar-line"></i></span>
</div>
</div>
<div class="col-lg-12 col-md-12">
{{ 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() }}
</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('interviewSchedule.index') }}" />
</div>
@push('js')
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
@endpush