{!! Form::open(array('files'=>'false', 'role' => 'form', 'class'=>'form')) !!}
{!! Form::label('fiscal_year_id', $data['attributes']['fiscal_year_id'], ['class' => 'control-label']) !!} {!! Form::select('fiscal_year_id', $data['fiscalYearData'], $data['model']->fiscal_year_id, ['class' => 'form-control', 'id' => 'fiscal_year_id']) !!}

{{ $errors->error->first('fiscal_year_id') }}

{!! Form::label('holiday_type', $data['attributes']['holiday_type'], ['class' => 'control-label']) !!} {!! Form::select('holiday_type', $data['model']->getHolidayType(), $data['model']->holiday_type, ['class' => 'form-control', 'id' => 'holiday_type']) !!}

{{ $errors->error->first('holiday_type') }}

{!! Form::label('holiday_name', $data['attributes']['holiday_name'], ['class' => 'control-label']) !!} {!! Form::text('holiday_name', $data['model']->holiday_name, ['class' => 'form-control', 'id' => 'holiday_name', 'type' => 'text', 'placeholder' => $data['placeholder']['holiday_name']]) !!}

{{ $errors->error->first('holiday_name') }}

{!! Form::label('holiday_date', $data['attributes']['holiday_date'], ['class' => 'control-label']) !!} {!! Form::text('holiday_date', date('d-m-Y',strtotime($data['model']->holiday_date)), ['class' => 'form-control datepicker', 'id' => 'holiday_date', 'type' => 'text', 'placeholder' => $data['placeholder']['holiday_date']]) !!}

{{ $errors->error->first('holiday_date') }}


Warning: Undefined variable $data in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr/holidaySettings/formUpdate.blade.php on line 26

Warning: Trying to access array offset on value of type null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr/holidaySettings/formUpdate.blade.php on line 26

Warning: Attempt to read property "branch_id" on null in /home/shikkhaplus/public_html/resources_16_05_2024/views/hr/holidaySettings/formUpdate.blade.php on line 26
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}