{{-- Title --}}
@include('cms.components.inputs.text', ['label' => 'Title', 'asterix' => true, 'name' => 'title', 'maxlength' => 255])
{{-- Text --}}
@include('cms.components.inputs.textarea', ['label' => 'Text', 'name' => 'text', 'quill' => true])
{{-- Title AR --}}
@include('cms.components.inputs.text', ['label' => 'Title AR', 'asterix' => true, 'name' => 'title_ar', 'value' => $row->getTranslation('title', 'ar'), 'maxlength' => 255])
{{-- Text AR --}}
@include('cms.components.inputs.textarea', ['label' => 'Text AR', 'name' => 'text_ar', 'value' => $row->getTranslation('text', 'ar'), 'quill' => true])
{{-- Title KU --}}
@include('cms.components.inputs.text', ['label' => 'Title KU', 'asterix' => true, 'name' => 'title_ku', 'value' => $row->getTranslation('title', 'ku'), 'maxlength' => 255])
{{-- Text KU --}}
@include('cms.components.inputs.textarea', ['label' => 'Text KU', 'name' => 'text_ku', 'value' => $row->getTranslation('text', 'ku'), 'quill' => true])