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