fix route
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user