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

{{ __('New Determination') }}

@csrf
@component('admin.components.input', [ 'label' => __('Title'), 'name' => 'title', 'value' => old('title'), 'placeholder' => __('Please enter title'), ]) @endcomponent @component('admin.components.textarea', [ 'label' => __('Description'), 'name' => 'text', 'value' => old('text'), 'placeholder' => 'Please enter a desription', 'class' => 'editor', ]) @endcomponent @component('admin.components.file', [ 'label' => __('Photo'), 'name' => 'main_photo', 'value' => old('main_photo'), 'placeholder' => 'Please select image', ]) @endcomponent @component('admin.components.select_recursive', [ 'label' => __('Category'), 'name' => 'determination_category_id', 'options' => $categories, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => null, ]) @endcomponent @component('admin.components.select_recursive', [ 'label' => __('Equipment'), 'name' => 'determination_equipment_id', 'options' => $equipments, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => null, ]) @endcomponent @component('admin.components.select', [ 'label' => __('Area'), 'name' => 'world_city_id', 'options' => $areas, 'option_id' => 'id', 'option_value' => 'name', 'selected_value' => null, ]) @endcomponent
@endsection