Add homepage

This commit is contained in:
Ludovic CANDELLIER
2022-03-30 22:23:57 +02:00
parent 7187a312eb
commit e3c60e7cde
27 changed files with 1200 additions and 2549 deletions

View File

@@ -0,0 +1,14 @@
@extends('layout.index', [
'title' => __('shop.homepages.title'),
'subtitle' => __('shop.homepages.edit'),
'breadcrumb' => [__('shop.homepages.title')]
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.Homepages.store', 'id' => 'homepage-form', 'autocomplete' => 'off']) }}
<input type="hidden" name="id" value="{{ $homepage['id'] }}">
@include('Admin.Shop.Homepages.form')
</form>
@endsection