fix shipping
This commit is contained in:
@@ -1,12 +1,15 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('shop.deliveries.title'),
|
||||
'subtitle' => __('shop.deliveries.edit'),
|
||||
'breadcrumb' => [__('shop.deliveries.title')]
|
||||
'title' => __('shop.delivery_packages.title'),
|
||||
'subtitle' => __('shop.delivery_packages.edit'),
|
||||
])
|
||||
|
||||
@section('content')
|
||||
{{ Form::open(['route' => 'Admin.Shop.Deliveries.store', 'id' => 'delivery-form', 'autocomplete' => 'off']) }}
|
||||
<input type="hidden" name="id" value="{{ $delivery['id'] }}">
|
||||
@include('Admin.Shop.Deliveries.form')
|
||||
</form>
|
||||
{{ Form::open([
|
||||
'route' => 'Admin.Shop.DeliveryPackages.store',
|
||||
'id' => 'delivery_package-form',
|
||||
'autocomplete' => 'off'
|
||||
]) }}
|
||||
<input type="hidden" name="id" value="{{ $package['id'] }}">
|
||||
@include('Admin.Shop.DeliveryPackages.form')
|
||||
</form>
|
||||
@endsection
|
||||
|
||||
Reference in New Issue
Block a user