@include('cruds.fields.type', ['base' => \App\Models\Organisation::class, 'trans' => 'organisations'])
{!! Form::select2(
'organisation_id',
(isset($model) && $model->organisation ? $model->organisation : $formService->prefillSelect('organisation', $source)),
App\Models\Organisation::class,
false,
'organisations.fields.organisation'
) !!}
@include('cruds.fields.location')