Files
opensem/resources/views/Admin/Shop/ArticleNatures/create.blade.php
Ludovic CANDELLIER 67f490b2fe Fixes
2021-08-24 23:41:10 +02:00

16 lines
476 B
PHP

@extends('layout.index', [
'title' => __('shop.article_natures.title'),
'subtitle' => __('shop.article_natures.add'),
'breadcrumb' => [__('shop.article_natures.title'), __('shop.article_natures.add')]
])
@include('boilerplate::load.fileinput')
@section('content')
{{ Form::open(['route' => 'Admin.Shop.ArticleNatures.store', 'id' => 'article-nature-form', 'autocomplete' => 'off', 'files' => true]) }}
@include('Admin.Shop.ArticleNatures.form')
</form>
@endsection