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

{{ $page_info['title'] }}

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