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

{{ $page_info['title'] }}

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