29 lines
784 B
PHP
29 lines
784 B
PHP
@extends('layout.index', [
|
|
'title' => __('article_families.title'),
|
|
'subtitle' => __('article_families.create.title'),
|
|
'breadcrumb' => [__('article_families.title'), __('article_families.create.title')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Shop.Admin.ArticleFamilies.store', 'id' => 'article-family-form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12 mbl">
|
|
<a href="{{ route("Shop.Admin.Articles.index") }}" class="btn btn-default">
|
|
{{ __('article_families.list.title') }}
|
|
</a>
|
|
|
|
<span class="btn-group pull-right">
|
|
@include('components.button-save')
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
@include('Shop.Admin.ArticleFamilies.form')
|
|
</form>
|
|
|
|
@endsection
|