@extends('layouts.app') @section('content')
New Holiday
@csrf
@if ($errors->has('holiday_name'))
{{ $errors->first('holiday_name') }}
@endif
@if ($errors->has('holiday_date'))
{{ $errors->first('holiday_date') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if ($errors->has('interval'))
{{ $errors->first('interval') }}
@endif
@section('script') @endsection @endsection