This commit is contained in:
Ludovic CANDELLIER
2022-12-22 18:16:25 +01:00
parent b4d8bab385
commit b6821d52a7
9 changed files with 111 additions and 30 deletions

View File

@@ -0,0 +1,25 @@
@extends('Shop.layout.layout', [
'title' => __('Editer son profil'),
])
@section('content')
<div class="row">
<div class="col-6">
<x-card title="Mes coordonnées" class="gradient-green1">
@include('Shop.Customers.partials.registration')
</x-card>
</div>
<div class="col-6">
<x-card title="Mes adresses de livraison" class="gradient-green1 mb-3">
@include('Shop.Customers.partials.addresses')
</x-card>
<x-card title="Mon mot de passe" class="gradient-green1">
@include('Shop.auth.passwords.password_confirmation')
</x-card>
</div>
</div>
@endsection
@include('load.layout.modal')