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

{{ __('Update')}} {{ $record->title }}

@csrf @method('PATCH')
@component('admin.components.input',[ 'label'=>__('Title'), 'name'=>'title', 'value'=>$record->title, 'placeholder'=>__('Please enter title') ]) @endcomponent @component('admin.components.select_recursive',[ 'label'=>__('Parents'), 'name'=>'parent_id', 'options' => $parents, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => $record->parent_id, ]) @endcomponent
@endsection