@extends('layouts.app') @section('content')

{{ __('app.edit') }} {{ __('app.holidays') }}

@csrf @method('PATCH') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif
@php $selMonth = old('month', $holiday->date ? $holiday->date->format('m') : now()->format('m')); @endphp
@php $selDay = old('day', $holiday->date ? $holiday->date->format('d') : now()->format('d')); @endphp
is_paid) ? 'checked' : '' }}>
@endsection