This commit is contained in:
Ludovic CANDELLIER
2021-03-29 23:46:01 +02:00
parent 4855254a7f
commit 993154674e
28 changed files with 300 additions and 105 deletions

View File

@@ -0,0 +1,15 @@
@extends('layout.index', [
'title' => __('packages.title'),
'subtitle' => __('packages.create.title'),
'breadcrumb' => [__('packages.title')]
])
@include('boilerplate::load.fileinput')
@section('content')
{{ Form::open(['route' => 'Shop.Admin.Packages.store', 'id' => 'package-form', 'autocomplete' => 'off']) }}
@include('Shop.Admin.Packages.form')
</form>
@endsection