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

@lang('Duplicate dictionary')

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