12 lines
367 B
PHP
12 lines
367 B
PHP
@extends('layout.index', [
|
|
'title' => __('Contenus'),
|
|
'subtitle' => __('Editer un contenu'),
|
|
])
|
|
|
|
@section('content')
|
|
{{ Form::open(['route' => 'Admin.Shop.Contents.store', 'id' => 'content-form', 'autocomplete' => 'off']) }}
|
|
<input type="hidden" name="id" value="{{ $content['id'] }}">
|
|
@include('Admin.Shop.Contents.form')
|
|
</form>
|
|
@endsection
|