@extends('app') {{-- Web site Title --}} @section('title') Week Off :: @parent @stop @section('content') @if (isset($status))
@endif
{!! Form::model($weekOff, ['method' => isset($weekOff) && $weekOff->id ? 'put' : 'post', 'files' => 'true']) !!}
@include('partials.nav')

Week Off

@if(isset($weekOff) && ($weekOff->id))
Edit
@else
Add New
@endif

Create Week Off

{!! $errors->first('day', '')!!}
{!! $errors->first('week', '')!!}
{!! $errors->first('off_type', '')!!}
{!! Form::close() !!}
@endsection {{-- Scripts --}} @section('scripts') @parent @endsection