@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') {{-- Date --}} @include('cms.components.inputs.date', ['label' => 'Date', 'asterix' => true, 'name' => 'date']) {{-- Text --}} @include('cms.components.inputs.text', ['label' => 'Text', 'asterix' => true, 'name' => 'text', 'maxlength' => 255])
{{-- Text AR --}} @include('cms.components.inputs.text', ['label' => 'Text AR', 'asterix' => true, 'name' => 'text_ar', 'value' => $row->getTranslation('text', 'ar'), 'maxlength' => 255])
{{-- Text KU --}} @include('cms.components.inputs.text', ['label' => 'Text KU', 'asterix' => true, 'name' => 'text_ku', 'value' => $row->getTranslation('text', 'ku'), 'maxlength' => 255])
@include('cms.layouts.footers.auth')
@endsection