Files
opensem/resources/views/Shop/Admin/Articles/create.blade.php
Ludovic CANDELLIER 4855254a7f Fixes
2021-03-27 01:16:37 +01:00

14 lines
388 B
PHP

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