@php
$company_settings = getCompanyAllSetting();
@endphp
{{ Form::open(['url' => 'event', 'method' => 'post', 'class' => 'needs-validation', 'novalidate']) }}
@if (module_is_active('AIAssistant'))
@include('aiassistant::ai.generate_ai_btn',['template_module' => 'event','module'=>'Hrm'])
@endif
{{ Form::label('branch_id', !empty($company_settings['hrm_branch_name']) ? $company_settings['hrm_branch_name'] : __('Branch'), ['class' => 'form-label']) }}
{{__('This filed is required.')}}
{{__('This filed is required.')}}
{{ Form::label('title', __('Event Title'), ['class' => 'form-label']) }}
{{ Form::text('title', null, ['class' => 'form-control ', 'placeholder' => __('Enter Event Title'),'required' => 'required']) }}
{{ Form::label('start_date', __('Event start Date'), ['class' => 'form-label']) }}
{{ Form::date('start_date', date('Y-m-d'), ['class' => 'form-control datetime-local ', 'autocomplete'=>'off', 'required' => 'required', 'min' => date('Y-m-d')]) }}
{{ Form::label('end_date', __('Event End Date'), ['class' => 'form-label']) }}
{{ Form::date('end_date', date('Y-m-d'), ['class' => 'form-control datetime-local ','autocomplete'=>'off', 'required' => 'required', 'min' => date('Y-m-d')]) }}
{{ Form::label('description', __('Event Description'), ['class' => 'form-label']) }}
{{ Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __('Enter Event Description'),'rows'=>'3']) }}
@stack('calendar')
{{ Form::close() }}