14 lines
388 B
PHP
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
|