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