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

{{ $page_info['title'] }}

@csrf {{-- Numbers --}} @include('cms.components.inputs.number', ['label' => 'Numbers', 'asterix' => true, 'name' => 'numbers'])
{{-- Type --}} @include('cms.components.inputs.text', ['label' => 'Type', 'asterix' => true, 'name' => 'type', 'maxlength' => 255])
{{-- Type AR --}} @include('cms.components.inputs.text', ['label' => 'Type AR', 'asterix' => true, 'name' => 'type_ar', 'maxlength' => 255])
{{-- Type KU --}} @include('cms.components.inputs.text', ['label' => 'Type KU', 'asterix' => true, 'name' => 'type_ku', 'maxlength' => 255])
{{-- Price --}} @include('cms.components.inputs.number', ['label' => 'Price', 'asterix' => true, 'name' => 'price'])
@include('cms.layouts.footers.auth')
@endsection