{!! Form::text('name', $formService->prefill('name', $source), ['placeholder' => trans('locations.placeholders.name'), 'class' => 'form-control', 'maxlength' => 191]) !!}
@include('cruds.fields.type', ['base' => \App\Models\Location::class, 'trans' => 'locations'])
{!! Form::select2(
'parent_location_id',
(isset($model) && $model->parentLocation ? $model->parentLocation : $formService->prefillSelect('parentLocation', $source, true, \App\Models\Location::class)),
App\Models\Location::class,
true,
'crud.fields.location',
'locations.find',
'locations.placeholders.location'
) !!}
@include('cruds.fields.tags')
@include('cruds.fields.private')
@include('cruds.fields.entry2')
@include('cruds.fields.image')