11 lines
304 B
PHP
11 lines
304 B
PHP
@extends('layout.index', [
|
|
'title' => __('shop.homepages.title'),
|
|
'subtitle' => __('shop.homepages.add'),
|
|
])
|
|
|
|
@section('content')
|
|
{{ Form::open(['route' => 'Admin.Shop.Homepages.store', 'id' => 'homepage-form', 'autocomplete' => 'off']) }}
|
|
@include('Admin.Shop.Homepages.form')
|
|
</form>
|
|
@endsection
|