@php
$company_settings = getCompanyAllSetting();
@endphp
{{ Form::open(['url' => 'holiday', 'method' => 'post', 'class' => 'needs-validation', 'novalidate']) }}
@if (module_is_active('AIAssistant'))
@include('aiassistant::ai.generate_ai_btn',['template_module' => 'holiday','module'=>'Hrm'])
@endif
{{ Form::label('occasion', __('Occasion'), ['class' => 'form-label']) }}
{{ Form::text('occasion', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Enter Occasion')]) }}
{{ Form::label('start_date', __('Start Date'), ['class' => 'form-label']) }}
{{ Form::date('start_date', date('Y-m-d'), ['class' => 'form-control ', 'required' => 'required', 'placeholder' => 'Select Date', 'min' => date('Y-m-d')]) }}
{{ Form::label('end_date', __('End Date'), ['class' => 'form-label']) }}
{{ Form::date('end_date', date('Y-m-d'), ['class' => 'form-control ', 'required' => 'required', 'placeholder' => 'Select Date', 'min' => date('Y-m-d')]) }}
@stack('calendar')
{{ Form::close() }}