@extends('main') @section('styles') @endsection @section('body_class') class="shopping-cart-page" @endsection @section('content')

{!! __('Checkout') !!}

{!! __('Subtotal') !!} {{ Cart::instance('default')->subtotal(false,false,false) }} {{ __('EGP') }}
{{ __('Delivery') }} {{ $location->amount }} {{ __('EGP') }}
{{ __('Order Total') }} {{ floatval(Cart::instance('default')->subtotal(false,false,false)+$location->amount) }} {{ __('EGP') }}
{!! __('Destination') !!} {{ $location->title }}  

{!! __('Send data request') !!}

{!! Form::open(array('route' => 'checkout.cart', 'method' => 'POST','class' => 'mb-0','id' => 'address-form')) !!}
{!! Form::close() !!}
@endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/js/jquery.validate.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/js/jquery.validate.ar.js') !!} @endsection