@extends('cms.layouts.main') @section('content') @include('cms.layouts.headers.partials', ['title' => 'Edit Record'])

{{ $page_info['title'] }}

@include('cms.components.alert', ['with' => 'status', 'class' => 'success'])
@csrf @method('put') {{-- Title --}} @include('cms.components.inputs.text', ['label' => 'Title', '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', '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', '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])
@include('cms.layouts.footers.auth')
@endsection