{!! Form::label('name', 'Name *') !!} {!! Form::text('name', null, ['class'=>'form-control']) !!}
{!! Form::label('type', 'Type') !!} {!! Form::select('type', $type_options, null, ['class'=>'form-control']) !!}
{!! Form::label('is_required', 'Required?') !!} {!! Form::select('is_required', [0 => 'Optional', 1 => 'Required'], 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]) !!}

Enter an explanation of how this field should be used when creating markers.

@include('backend._includes.notes')