@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)),
App\Models\Location::class,
false,
'crud.fields.location',
'locations.find',
'locations.placeholders.location'
) !!}