@extends('layout.app') @section('page-title', $data->title) @section('breadcrumb')
Home Review order
@endsection @section('content')
@if($data->reseller_id && $data->admin)
This looks like a reseller account. If that's correct, please, place the order logged in the reseller's account.
@endif @if($data->amazonPayError)
There was a problem with your payment. Please try it again or you can go to the Billing/Shipping info page to change your payment method.
@endif
Please, review the information below.
If everything is correct, click the button at the bottom of this page. To correct any mistakes just click here to go back.
@include('partials._billing_shipping_info', ['order' => $data->order])
@if($data->order->comments)
Comments

{{ $data->order->comments }}

@endif
@include('partials._cart_items', ['order' => $data->orderCart, 'is_readonly' => true]) @include('partials._order_summary', [ 'orderSummaryData' => $data->orderSummaryData, 'affirmData' => $data->affirmData, 'amazonPay' => $data->amazonPay, 'payment_method' => $data->order->payment_method, 'is_review' => true, 'is_admin' => $data->admin ])
@endsection @push('after-foot-js') @if($data->order->payment_method === 'paypal') @elseif($data->order->payment_method === 'affirm') @elseif($data->order->payment_method === 'amazonPay') @endif @endpush