@extends('app')
{{-- Web site Title --}}
@section('title') Holiday :: @parent @stop
@section('content')
@if (isset($status))
{!! Form::model($holiday, ['method' => isset($holiday) && $holiday->id ? 'put' : 'post', 'files' => 'true']) !!}
{!! Form::text('name',
isset($holiday) && $holiday->name ? $holiday->name : old('name'),
['class' => 'form-control',
'id' => 'name'])
!!}
{!! $errors->first('name', '
')!!}
{!! Form::date('date',
isset($holiday) && $holiday->date ? $holiday->date : old('date'),
['class' => 'form-control',
'id' => 'date'])
!!}
{!! $errors->first('date', '
')!!}
{!! Form::close() !!}
@endsection
{{-- Scripts --}}
@section('scripts')
@parent
@endsection