@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')
@endif
{{ Form::open(['route' => 'Admin.Shop.Orders.store', 'id' => 'order-form', 'autocomplete' => 'off']) }}
@include('Shop.Orders.partials.deliveries')
@include('Shop.Orders.partials.payments')
@include('Shop.Baskets.partials.basketTotal')
@endsection
@push('js')
@endpush