17 lines
432 B
PHP
17 lines
432 B
PHP
@extends('layout.index', [
|
|
'title' => __('Shop.varieties.title'),
|
|
'subtitle' => __('Shop.varieties.add'),
|
|
'breadcrumb' => [__('Shop.varieties.title'), __('Shop.varieties.add')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Shop.Admin.Varieties.store', 'id' => 'form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
@include('Shop.Admin.Varieties.form')
|
|
</form>
|
|
|
|
@endsection
|