30 lines
725 B
PHP
30 lines
725 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 }}">
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12 mbl">
|
|
<a href="{{ route("Shop.Admin.Articles.index") }}" class="btn btn-default">
|
|
{{ __('Shop.articles.title') }}
|
|
</a>
|
|
|
|
<span class="btn-group pull-right">
|
|
@include('components.button-save')
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
@include('Shop.Admin.Articles.form')
|
|
</form>
|
|
|
|
@endsection
|