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

{{ $page_info['title'] }}

@csrf {{-- Slug --}} @include('cms.components.inputs.text', ['label' => 'Slug', 'asterix' => true, 'name' => 'slug']) {{-- 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', 'maxlength' => 255]) {{-- Text AR --}} @include('cms.components.inputs.textarea', ['label' => 'Text AR', 'name' => 'text_ar', 'quill' => true])
{{-- Title KU --}} @include('cms.components.inputs.text', ['label' => 'Title KU', 'name' => 'title_ku', 'maxlength' => 255]) {{-- Text KU --}} @include('cms.components.inputs.textarea', ['label' => 'Text KU', 'name' => 'text_ku', 'quill' => true])
@include('cms.layouts.footers.auth')
@endsection