@extends('Shop.layout.layout', [ 'title' => __('Commande'), ]) @section('content')
@if (!App\Repositories\Shop\Customers::isConnected())

Déja client ?

@include('Shop.auth.partials.login') @include('Shop.auth.partials.register') @else {{ Form::open(['route' => 'Shop.Orders.store', 'id' => 'order-form', 'autocomplete' => 'off']) }}
@include('Shop.Orders.partials.addresses', ['addresses' => $customer['invoicing_addresses'] ?? false]) @include('Shop.Orders.partials.deliveries') @include('Shop.Orders.partials.addresses', ['addresses' => $customer['delivery_addresses'] ?? false]) @include('Shop.Orders.partials.payments')
{!! Form::close() !!} @endif
@if ($basket['count'])
@include('Shop.Baskets.partials.basketTotal')
@endif
@endsection @include('load.layout.chevron') @push('js') @endpush