@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')
{{-- Text Top --}} @include('cms.components.inputs.textarea', ['label' => 'Text Top', 'name' => 'text_top', 'quill' => true]) {{-- Video Link --}} @include('cms.components.inputs.text', ['label' => 'Video Link', 'name' => 'video_link']) {{-- Text Bottom --}} @include('cms.components.inputs.textarea', ['label' => 'Text Bottom', 'name' => 'text_bottom', 'quill' => true])
{{-- Text Top AR --}} @include('cms.components.inputs.textarea', ['label' => 'Text Top AR', 'name' => 'text_top_ar', 'value' => $row->getTranslation('text_top', 'ar'), 'quill' => true]) {{-- Video Link AR --}} @include('cms.components.inputs.text', ['label' => 'Video Link AR', 'name' => 'video_link_ar', 'value' => $row->getTranslation('video_link', 'ar')]) {{-- Text Bottom AR --}} @include('cms.components.inputs.textarea', ['label' => 'Text Bottom AR', 'name' => 'text_bottom_ar', 'value' => $row->getTranslation('text_bottom', 'ar'), 'quill' => true])
{{-- Text Top KU --}} @include('cms.components.inputs.textarea', ['label' => 'Text Top KU', 'name' => 'text_top_ku', 'value' => $row->getTranslation('text_top', 'ku'), 'quill' => true]) {{-- Video Link KU --}} @include('cms.components.inputs.text', ['label' => 'Video Link KU', 'name' => 'video_link_ku', 'value' => $row->getTranslation('video_link', 'ku')]) {{-- Text Bottom KU --}} @include('cms.components.inputs.textarea', ['label' => 'Text Bottom KU', 'name' => 'text_bottom_ku', 'value' => $row->getTranslation('text_bottom', 'ku'), 'quill' => true])
{{-- Image --}} @include('cms.components.inputs.image', ['label' => 'Image', 'asterix' => true, 'name' => 'image', 'text' => 'ratio: 0.54'])
{{-- Image AR --}} @include('cms.components.inputs.image', ['label' => 'Image AR', 'asterix' => true, 'name' => 'image_ar', 'value' => $row->getTranslation('image', 'ar'), 'text' => 'ratio: 0.54'])
{{-- Image KU --}} @include('cms.components.inputs.image', ['label' => 'Image KU', 'asterix' => true, 'name' => 'image_ku', 'value' => $row->getTranslation('image', 'ku'), 'text' => 'ratio: 0.54'])
@include('cms.layouts.footers.auth')
@endsection