{!! Form::text('name', $formService->prefill('name', $source), ['placeholder' => trans('organisations.placeholders.name'), 'class' => 'form-control', 'maxlength' => 191]) !!}
@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, true, \App\Models\Organisation::class)),
App\Models\Organisation::class,
true,
'organisations.fields.organisation'
) !!}
@include('cruds.fields.location')
@if ($campaign->enabled('characters'))
{!! Form::members(
'id',
[
'model' => isset($model) ? $model : $formService->prefillModel($source),
'source' => $source
]
) !!}
@endif
@include('cruds.fields.tags')
@include('cruds.fields.private')
@include('cruds.fields.entry2')
@include('cruds.fields.image')