@extends('layouts.page') @section('title') {{ trans('title.frontpage') }} @stop @section('content')
{!! Form::open([ 'method' => 'POST', 'url' => route('cart.confirm', current_front()), 'data-xhr-url' => route('cart.update', current_front()), ]) !!}

@lang('context.checkout')

@include('fragments.checkout.billing', [ 'order' => $order ])
@include('fragments.checkout.shipping', [ 'order' => $order ])
@include('fragments.checkout.payment', [ 'order' => $order ])
@include('fragments.checkout.review', [ 'order' => $order ])
@include('fragments.cart.overview', [ 'context' => $context ])
{!! Form::close() !!}
@endsection