@extends('frontend.layouts.partials.default') @section('title','Shopping Cart') @section('main')

Order Summary

@if(count($items)==0)

No Items in cart

@endif @foreach($items as $item) @if($item['item_type'] == 1)

Image ID :

{{$item['image_name_id']}}

License Type :

{{config('variables.License')[$item['license_type']]}}

Size :

{{$item['size']}}

Price :

{{Priceformat($item['price'])}}
@else

Video ID :

{{$item['video_secret']}}

License Type :

{{config('variables.License')[$item['license_type']]}}

Size :

{{$item['size']}}

Price :

{{Priceformat($item['price'])}}
@endif @endforeach @if (count($items))
Sub Total
{{Priceformat($total)}}
Vat (%)
{{$vat}} %

Grand Total

{{Priceformat($grand_total)}}

{{-- Place Order --}}

@endif

Payment Details

Please note that we cannot accept paper check or wire transfer for this purchase

Secure Checkout

Your payment information is encrypted before transaction. For your convenience Image souk will save your encrypted payment information for future services, however, you can manage your information in account settings.

@csrf

$ {{$Order->order_price}}.00

Payment Via

First Name

Last Name

Mobile / Phone

Street Address

City

State

Postal Code

Country

@if ($token ?? false) @endif
@endsection