fixes
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
@extends('layout.index', [
|
||||
'title' => __('shop.customers.title'),
|
||||
'subtitle' => __('shop.customers.edit'),
|
||||
'breadcrumb' => [__('shop.customers.title')]
|
||||
'title' => __('shop.customer_addresses.title'),
|
||||
'subtitle' => __('shop.customer_addresses.edit'),
|
||||
'breadcrumb' => [__('shop.customer_addresses.title')],
|
||||
])
|
||||
|
||||
@section('content')
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Shop.Customers.store', 'id' => 'customer-form', 'autocomplete' => 'off']) }}
|
||||
<input type="hidden" name="id" value="{{ $customer['id'] }}">
|
||||
@include('Admin.Shop.Customers.form')
|
||||
</form>
|
||||
|
||||
{{ Form::open(['route' => 'Admin.Shop.CustomerAddresses.store', 'id' => 'customer_address-form', 'autocomplete' => 'off']) }}
|
||||
<input type="hidden" name="id" value="{{ $customer_address['id'] ?? null }}">
|
||||
@include('Admin.Shop.CustomerAddresses.form')
|
||||
</form>
|
||||
@endsection
|
||||
|
||||
Reference in New Issue
Block a user