{!! Form::label('name', 'Name *') !!}
{!! Form::text('name', null, ['class'=>'form-control']) !!}
{!! Form::label('is_active', 'Active?') !!}
{!! Form::select('is_active', [1 => 'Active', 0 => 'Inactive'], null, ['class'=>'form-control']) !!}
{!! Form::label('instructions', 'Instructions') !!}
{!! Form::textarea('instructions', null, ['class'=>'form-control', 'rows'=>$rows]) !!}
{!! Form::label('description', 'Description') !!}
{!! Form::textarea('description', null, ['class'=>'form-control', 'rows'=>$rows]) !!}
@include('backend._includes.notes')