{{ csrf_field() }}
{!! Form::select2( 'organisation_id', (isset($model) && $model->organisation ? $model->organisation : null), App\Models\Organisation::class, true ) !!}
{!! Form::text('role', null, ['placeholder' => trans('quests.placeholders.role'), 'class' => 'form-control', 'maxlength' => 45]) !!}
{!! Form::textarea('description', null, ['class' => 'form-control html-editor', 'id' => 'description']) !!}
@if (Auth::user()->isAdmin())
{!! Form::hidden('is_private', 0) !!}

{{ trans('crud.hints.is_private') }}

@endif
{!! Form::hidden('quest_id', $parent->id) !!}