add multiple addresses on customer edition

This commit is contained in:
Ludovic CANDELLIER
2023-07-04 23:32:41 +02:00
parent d6ab6c73e2
commit 3d16580bc8
12 changed files with 374 additions and 52 deletions

View File

@@ -0,0 +1,14 @@
@extends('layout.index', [
'title' => __('shop.customers.title'),
'subtitle' => __('shop.customers.edit'),
'breadcrumb' => [__('shop.customers.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>
@endsection