{!! Form::label('title', 'Title', ['class' => 'control-label' ]) !!}
{!! Form::text('title', null, ['class' => 'form-control form-control-lg', 'required', 'placeholder' => 'Title']) !!}
{!! Form::label('fiscal_year', 'Fiscal Year', ['class' => 'control-label' ]) !!}
{!! Form::text('fiscal_year', null, ['class' => 'form-control', 'placeholder' => 'Fiscal Year']) !!}
{!! Form::label('type', 'Document Type', ['class' => 'control-label' ]) !!} {!! Form::select('type', App\Models\Document::getType(), null, ['class' => 'form-control']) !!}
@include('backend.partials.editor')