@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => $page_info['title']])
@include('cms.components.alert', ['with' => 'status', 'class' => 'success'])
@csrf @method('put')
{{-- Title --}} @include('cms.components.inputs.text', ['label' => 'Title', 'asterix' => true, 'name' => 'title', 'maxlength' => 255]) {{-- Text --}} @include('cms.components.inputs.textarea', ['label' => 'Text', 'asterix' => true, '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', 'asterix' => true, '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', 'asterix' => true, 'name' => 'text_ku', 'value' => $row->getTranslation('text', 'ku'), 'quill' => true])

{{-- Title Left --}} @include('cms.components.inputs.text', ['label' => 'Title Left', 'name' => 'title_left', 'maxlength' => 255]) {{-- Text Left --}} @include('cms.components.inputs.textarea', ['label' => 'Text Left', 'asterix' => true, 'name' => 'text_left', 'quill' => true])
{{-- Title Left AR --}} @include('cms.components.inputs.text', ['label' => 'Title Left AR', 'name' => 'title_left_ar', 'value' => $row->getTranslation('title_left', 'ar'), 'maxlength' => 255]) {{-- Text Left AR --}} @include('cms.components.inputs.textarea', ['label' => 'Text Left AR', 'asterix' => true, 'name' => 'text_left_ar', 'value' => $row->getTranslation('text_left', 'ar'), 'quill' => true])
{{-- Title Left KU --}} @include('cms.components.inputs.text', ['label' => 'Title Left KU', 'name' => 'title_left_ku', 'value' => $row->getTranslation('title_left', 'ku'), 'maxlength' => 255]) {{-- Text Left KU --}} @include('cms.components.inputs.textarea', ['label' => 'Text Left KU', 'asterix' => true, 'name' => 'text_left_ku', 'value' => $row->getTranslation('text_left', 'ku'), 'quill' => true])

{{-- Title Right --}} @include('cms.components.inputs.text', ['label' => 'Title Right', 'asterix' => true, 'name' => 'title_right', 'maxlength' => 255]) {{-- Text Right --}} @include('cms.components.inputs.textarea', ['label' => 'Text Right', 'asterix' => true, 'name' => 'text_right', 'quill' => true])
{{-- Title Right AR --}} @include('cms.components.inputs.text', ['label' => 'Title Right AR', 'asterix' => true, 'name' => 'title_right_ar', 'value' => $row->getTranslation('title_right', 'ar'), 'maxlength' => 255]) {{-- Text Right AR --}} @include('cms.components.inputs.textarea', ['label' => 'Text Right AR', 'asterix' => true, 'name' => 'text_right_ar', 'value' => $row->getTranslation('text_right', 'ar'), 'quill' => true])
{{-- Title Right KU --}} @include('cms.components.inputs.text', ['label' => 'Title Right KU', 'asterix' => true, 'name' => 'title_right_ku', 'value' => $row->getTranslation('title_right', 'ku'), 'maxlength' => 255]) {{-- Text Right KU --}} @include('cms.components.inputs.textarea', ['label' => 'Text Right KU', 'asterix' => true, 'name' => 'text_right_ku', 'value' => $row->getTranslation('text_right', 'ku'), 'quill' => true])

{{-- Title Bottom --}} @include('cms.components.inputs.text', ['label' => 'Title Bottom', 'asterix' => true, 'name' => 'title_bottom', 'maxlength' => 255]) {{-- Text Bottom --}} @include('cms.components.inputs.textarea', ['label' => 'Text Bottom', 'asterix' => true, 'name' => 'text_bottom', 'quill' => true])
{{-- Title Bottom AR --}} @include('cms.components.inputs.text', ['label' => 'Title Bottom AR', 'asterix' => true, 'name' => 'title_bottom_ar', 'value' => $row->getTranslation('title_bottom', 'ar'), 'maxlength' => 255]) {{-- Text Bottom AR --}} @include('cms.components.inputs.textarea', ['label' => 'Text Bottom AR', 'asterix' => true, 'name' => 'text_bottom_ar', 'value' => $row->getTranslation('text_bottom', 'ar'), 'quill' => true])
{{-- Title Bottom KU --}} @include('cms.components.inputs.text', ['label' => 'Title Bottom KU', 'asterix' => true, 'name' => 'title_bottom_ku', 'value' => $row->getTranslation('title_bottom', 'ku'), 'maxlength' => 255]) {{-- Text Bottom KU --}} @include('cms.components.inputs.textarea', ['label' => 'Text Bottom KU', 'asterix' => true, 'name' => 'text_bottom_ku', 'value' => $row->getTranslation('text_bottom', 'ku'), 'quill' => true])

{{-- Winner Image --}} @include('cms.components.inputs.image', ['label' => 'Winner Image', 'asterix' => true, 'name' => 'winner_image', 'text' => 'ratio: 0.22'])
{{-- Winner Image AR --}} @include('cms.components.inputs.image', ['label' => 'Winner Image AR', 'asterix' => true, 'name' => 'winner_image_ar', 'value' => $row->getTranslation('winner_image', 'ar'), 'text' => 'ratio: 0.22'])
{{-- Winner Image KU --}} @include('cms.components.inputs.image', ['label' => 'Winner Image KU', 'asterix' => true, 'name' => 'winner_image_ku', 'value' => $row->getTranslation('winner_image', 'ku'), 'text' => 'ratio: 0.22'])
@include('cms.layouts.footers.auth')
@endsection