15 lines
488 B
PHP
15 lines
488 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.tariff_unities.title'),
|
|
'subtitle' => __('shop.tariff_unities.edit'),
|
|
'breadcrumb' => [__('shop.tariff_unities.title'), __('shop.tariff_unities.edit')]
|
|
])
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Admin.Shop.TariffUnities.store', 'id' => 'tariff_unity-form', 'autocomplete' => 'off']) }}
|
|
<input type="hidden" name="id" value="{{ $tariff_unity['id'] ?? null }}">
|
|
@include('Admin.Shop.TariffUnities.form')
|
|
</form>
|
|
|
|
@endsection
|