@extends('layouts.master') @section('styles') @endsection @section('title') @lang('Add dictionary') @endsection @section('breadcrumbs') @component('components.breadcrumb', [ 'items' => [ ['url' => '#', 'label' => 'Admin'], ['url' => route('dictionaries.index'), 'label' => 'Dictionaries'], ], 'title' => 'Add dictionary' ])@endcomponent @endsection @section('content')

@lang('Create dictionary')

@csrf @method('PUT') @component('components.form.input', [ 'name' => 'type', 'label' => __('Dictionary type'), 'object' => $dictionary])@endcomponent @component('components.form.input', [ 'name' => 'label', 'label' => __('Label'), 'object' => $dictionary])@endcomponent @component('components.form.input', [ 'name' => 'value', 'label' => __('Value'), 'object' => $dictionary])@endcomponent @component('components.form.input', [ 'name' => 'order_no', 'label' => __('Order No'), 'object' => $dictionary])@endcomponent
@endsection @section('scripts') @endsection