@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.holidayList.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.holidayList.fields.title_helper') }}
@if($errors->has('holiday_date'))
{{ $errors->first('holiday_date') }}
@endif {{ trans('cruds.holidayList.fields.holiday_date_helper') }}
@foreach(App\Models\HolidayList::STATUS_RADIO as $key => $label)
status) === (string) $key ? 'checked' : '' }} required>
@endforeach @if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.holidayList.fields.status_helper') }}
@endsection