15 lines
335 B
PHP
15 lines
335 B
PHP
@extends('layout.index', [
|
|
'title' => __('Contenus'),
|
|
'subtitle' => __('Ajouter un contenu'),
|
|
])
|
|
|
|
@section('content')
|
|
{{ Form::open([
|
|
'route' => 'Admin.Shop.Contents.store',
|
|
'id' => 'homepage-form',
|
|
'autocomplete' => 'off',
|
|
]) }}
|
|
@include('Admin.Shop.Contents.form')
|
|
</form>
|
|
@endsection
|