17 lines
549 B
PHP
17 lines
549 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.article_natures.title'),
|
|
'subtitle' => __('shop.article_natures.edit'),
|
|
'breadcrumb' => [__('shop.article_natures.title'), __('shop.article_natures.edit')]
|
|
])
|
|
|
|
@include('boilerplate::load.fileinput')
|
|
|
|
@section('content')
|
|
|
|
{{ Form::open(['route' => 'Admin.Shop.ArticleNatures.update', 'id' => 'article_nature-form', 'autocomplete' => 'off', 'files' => true]) }}
|
|
<input type="hidden" name="id" value="{{ $article_nature['id'] }}">
|
|
@include('Admin.Shop.ArticleNatures.form')
|
|
</form>
|
|
|
|
@endsection
|