12 lines
377 B
PHP
12 lines
377 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.tariff_unities.title'),
|
|
'subtitle' => __('shop.tariff_unities.add'),
|
|
'breadcrumb' => [__('shop.tariff_unities.title')]
|
|
])
|
|
|
|
@section('content')
|
|
{{ Form::open(['route' => 'Admin.Shop.TariffUnities.store', 'id' => 'tariff_unity-form', 'autocomplete' => 'off']) }}
|
|
@include('Admin.Shop.TariffUnities.form')
|
|
</form>
|
|
@endsection
|