fix route

This commit is contained in:
ludo
2024-03-11 18:38:23 +01:00
parent 7b7295aed1
commit 2227242704
9 changed files with 232 additions and 241 deletions

View File

@@ -1,11 +1,15 @@
@extends('layout.index', [
'title' => __('shop.customers.title'),
'subtitle' => __('shop.customers.add'),
'breadcrumb' => [__('shop.customers.title')]
'title' => __('shop.customer_addresses.title'),
'subtitle' => __('shop.customer_addresses.add'),
'breadcrumb' => [__('shop.customers.title')],
])
@section('content')
{{ Form::open(['route' => 'Admin.Shop.Customers.store', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
@include('Admin.Shop.Customers.form')
</form>
{{ Form::open([
'route' => 'Admin.Shop.CustomerAddresses.store',
'id' => 'customer_address-form',
'autocomplete' => 'off',
]) }}
@include('components.address')
</form>
@endsection