17 lines
432 B
PHP
17 lines
432 B
PHP
@extends('layout.index', [
|
|
'title' => __('articles.title'),
|
|
'subtitle' => __('articles.create.title'),
|
|
'breadcrumb' => [__('articles.title'), __('articles.create.title')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Shop.Admin.Articles.store', 'id' => 'article-form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
|
|
@include('Shop.Admin.Articles.form')
|
|
</form>
|
|
|
|
@endsection
|