{{-- Extends layout --}} @extends('admin.layouts.app') {{-- Content --}} @section('content')

{{ __('New Category') }}

@csrf
@component('admin.components.input',[ 'label'=>__('Title'), 'name'=>'title', 'value'=>old('title'), 'placeholder'=>__('Please enter title') ]) @endcomponent @component('admin.components.select_recursive',[ 'label'=>__('Category'), 'name'=>'parent_id', 'options' => $categories, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => NULL, ]) @endcomponent
@endsection