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,14 @@
@extends('layout.index', [
'title' => 'Package',
'subtitle' => 'Edition d\'un package',
'breadcrumb' => ['Articles']
])
@section('content')
{{ Form::open(['route' => 'Shop.Admin.Packages.store', 'id' => 'package-form', 'autocomplete' => 'off']) }}
<input type="hidden" name="id" value="{{ $package['id'] }}">
@include('Shop.Admin.Packages.form')
</form>
@endsection