@extends('app')
{{-- Web site Title --}}
@section('title') Week Off :: @parent @stop
@section('content')
@if (isset($status))
{!! Form::model($weekOff, ['method' => isset($weekOff) && $weekOff->id ? 'put' : 'post', 'files' => 'true']) !!}
{!! $errors->first('day', '
')!!}
{!! $errors->first('week', '
')!!}
{!! $errors->first('off_type', '
')!!}
{!! Form::close() !!}
@endsection
{{-- Scripts --}}
@section('scripts')
@parent
@endsection