@extends('main') @section('styles') @endsection @section('content')

{!! __('Total shopping cart') !!} @if (sizeof(Cart::instance('default')->content()) > 0) ({{ floatval(Cart::instance('default')->subtotal(false,false,false)) }}) {{ __('EGP') }} @endif

@livewire('mob-app.cart.total-cart',['showButtons' => false])

{!! __('Place of delivery') !!}

{!! Form::open(array('route' => 'mobily.checkout.save', 'method' => 'POST','class' => 'mb-0','id' => 'add-form')) !!}
  1. @foreach ($addresses as $key => $address)
    first) checked @endif value="{!! $address->id !!}">
    @endforeach

{!! __('Payment method') !!}

{!! __('Continue Shopping') !!}
{!! Form::close() !!}
@endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/js/jquery.validate.js') !!} @endsection