29 lines
797 B
PHP
29 lines
797 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' => 'Admin.Shop.ArticleFamilies.store', 'id' => 'article-family-form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12 mbl">
|
|
<a href="{{ route("Admin.Shop.Articles.index") }}" class="btn btn-default">
|
|
{{ __('article_families.list.title') }}
|
|
</a>
|
|
|
|
<span class="btn-group pull-right">
|
|
@include('components.form.buttons.button-save')
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
@include('Admin.Shop.ArticleFamilies.form')
|
|
</form>
|
|
|
|
@endsection
|