{!! Form::text('name', $formService->prefill('name', $source), ['placeholder' => trans('attribute_templates.placeholders.name'), 'class' => 'form-control', 'maxlength' => 191]) !!}
{!! Form::select2( 'attribute_template_id', (isset($model) && $model->attributeTemplate ? $model->attributeTemplate : $formService->prefillSelect('attributeTemplate', $source)), App\Models\AttributeTemplate::class, true, __('attribute_templates.fields.attribute_template'), null, __('attribute_templates.placeholders.attribute_template') ) !!}

{{ __('attribute_templates.hints.parent_attribute_template') }}

{!! Form::entityType( 'entity_type_id', [ 'model' => (isset($model) && $model->entityType ? $model->entityType : $formService->prefillSelect('entityType', $source)), ]) !!}

{{ __('attribute_templates.hints.entity_type') }}

@include('cruds.fields.private')