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