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