14 lines
340 B
PHP
14 lines
340 B
PHP
@extends('layout.index', [
|
|
'title' => __('Shop.tariffs.title'),
|
|
'subtitle' => __('Shop.tariffs.add'),
|
|
'breadcrumb' => [__('Shop.tariffs.title')]
|
|
])
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Admin.Shop.Tariffs.store', 'id' => 'tariff-form', 'autocomplete' => 'off']) }}
|
|
@include('Admin.Shop.Tariffs.form')
|
|
</form>
|
|
|
|
@endsection
|