@inject('formService', 'App\Services\FormService') {{ csrf_field() }}

{{ trans('crud.panels.general_information') }}

{!! Form::text('name', $formService->prefill('name', $source), ['placeholder' => trans('conversations.placeholders.name'), 'class' => 'form-control', 'maxlength' => 191]) !!}
@include('cruds.fields.type', ['base' => \App\Models\Conversation::class, 'trans' => 'conversations'])
{!! Form::select('target', trans('conversations.targets'), $formService->prefill('target', $source), ['class' => 'form-control']) !!}
@include('cruds.fields.tags') @include('cruds.fields.private')

{{ trans('crud.panels.appearance') }}

@include('cruds.fields.image')
@include('cruds.fields.save')