@section('title', 'Holiday')
{{ __('Add New Holiday') }}
{!! Form::model($holiday, [ 'url' => $holiday->exists ? route('backend.holiday.update', $holiday->id) : route('backend.holiday.store'), 'method' => $holiday->exists ? 'PUT' : 'POST', 'id' => $holiday->exists ? 'holidayUpdate' : 'holidayCreate', 'novalidate' => true, ]) !!}
{!! Form::label('name', 'Holiday Name', ['class' => 'form-label']) !!} * {!! Form::text('name', null, ['class' => 'form-control', 'required' => true]) !!}
{!! Form::label('date', 'Date', ['class' => 'form-label']) !!} * {!! Form::text('date', old('date', $holiday->date), ['class' => 'form-control', 'id' => 'holidayDate', 'required' => true]) !!}
{!! Form::label('description', 'Description', ['class' => 'form-label']) !!} {!! Form::textarea('description', null, ['class' => 'form-control']) !!}
{!! Form::submit($holiday->exists ? 'Update' : 'Create', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@push('css') @endpush @push('js') @endpush