@extends('includes.master') @section('content')
@if(Session::has('error'))
× {{ Session::get('error') }}
@endif

ENTER SHIPPING DETAILS

{{csrf_field()}} @if(Auth::guard('profile')->guest())
@else
@endif

ORDER DETAILS

@foreach($cartdata as $cart) @endforeach
Product Quantity
{{$cart->title}} {{$cart->quantity}}
{{----}} {{----}} {{----}} {{----}}
Shipping Cost:${{round($settings[0]->shipping_cost,2)}}

Total Cost:

${{round($total,2)}}

@stop @section('footer') @stop