begin order form with registration

This commit is contained in:
Ludovic CANDELLIER
2022-06-26 23:33:39 +02:00
parent c2fd71e3d1
commit e435752484
36 changed files with 442 additions and 423 deletions

View File

@@ -0,0 +1,43 @@
@extends('Shop.layout.layout', [
'title' => __('Commande'),
])
@section('content')
<div class="row">
<div class="col-8">
Déja client ?
<button class="btn">Créez mon compte</button>
<x-layout.collapse id="identification" title="Déjà client">
@include('Shop.auth.partials.login')
</x-layout.collapse>
<x-layout.collapse id="personal_data" title="Informations personnelles">
@include('Shop.auth.partials.register')
</x-layout.collapse>
<x-layout.collapse id="adresses" title="Adresses">
</x-layout.collapse>
<x-layout.collapse id="delivery_mode" title="Mode de livraison">
</x-layout.collapse>
<x-layout.collapse id="payment" title="Paiement">
</x-layout.collapse>
</div>
<div class="col-4">
<x-card class='shadow bg-light'>
@include('Shop.Baskets.partials.basketTotal')
</x-card>
</div>
</div>
@endsection
@push('js')
<script>
</script>
@endpush