@extends('layouts.front') @section('title') @lang('Shipping Details') @endsection @section('scripts') @endsection @section('content')
@if(session()->has('payment_fail')) @endif @include('includes.form_errors')
{!! Form::open(['method'=>'post', 'action'=>'CheckoutGuestController@startPaymentSession', 'id'=>'guest-checkout-shipping']) !!}
Or (Guest Login)
{{--

Guest Login

--}}
You can create an account after checkout.

Shipping Details

{{-- --}}
{!! Form::close() !!}
@foreach($cartItems as $cartItem) @endforeach
Order Summary
@if($cartItem->options->has('photo')) @if($cartItem->options->photo) @php $image_url = \App\Helpers\Helper::check_image_avatar($cartItem->options->photo, 75); @endphp
{{$cartItem->name}}
@else
{{$cartItem->name}}
@endif @endif
{{$cartItem->name}}
@if(is_array($cartItem->options->spec) && count($cartItem->options->spec)) @foreach($cartItem->options->spec as $key => $spec) {{$spec['name']}} : {{$spec['value']}} {{-- @if(!$loop->last) @endif --}} @endforeach @endif Qty : {{$cartItem->qty}}
{{currency_format($cartItem->total)}}
@endsection