18 lines
435 B
PHP
18 lines
435 B
PHP
@extends('layout.index', [
|
|
'title' => 'Articles',
|
|
'subtitle' => 'Edition d\'un article',
|
|
'breadcrumb' => ['Articles']
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Shop.Admin.Articles.store', 'id' => 'article-form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
<input type="hidden" name="id" id="id" value="{{ $id }}">
|
|
|
|
@include('Shop.Admin.Articles.form')
|
|
</form>
|
|
|
|
@endsection
|