47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
@extends('Shop.layout.layout', [
|
|
'title' => __('Commande'),
|
|
])
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-8">
|
|
@if (!App\Repositories\Shop\Customers::isConnected())
|
|
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>
|
|
@endif
|
|
|
|
{{ Form::open(['route' => 'Admin.Shop.Orders.store', 'id' => 'order-form', 'autocomplete' => 'off']) }}
|
|
|
|
<x-layout.collapse id="adresses" title="Adresses">
|
|
|
|
</x-layout.collapse>
|
|
|
|
<x-layout.collapse id="delivery_mode" title="Mode de livraison">
|
|
@include('Shop.Orders.partials.deliveries')
|
|
</x-layout.collapse>
|
|
|
|
<x-layout.collapse id="payment" title="Paiement">
|
|
@include('Shop.Orders.partials.payments')
|
|
</x-layout.collapse>
|
|
</form>
|
|
</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 |