@include('layouts.header')
@csrf
@if(session('success'))
{{ session('success') }}
@elseif(session('error'))
{{ session('error') }}
@endif

Delivery

@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
email)) readonly @endif /> @if($errors->has('email'))

{{ $errors->first('email') }}

@endif
mobile)) readonly @endif> @if($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
@if($errors->has('address'))

{{ $errors->first('address') }}

@endif
@if($errors->has('city'))

{{ $errors->first('city') }}

@endif
@if($errors->has('state'))

{{ $errors->first('state') }}

@endif
@if($errors->has('post_code'))

{{ $errors->first('post_code') }}

@endif

Your Order

MRP₹{{ $subtotalmrp ?? '' }}
Discount On MRP₹{{ $subtotalmrp - $sub_total ?? '' }}
@if($coupon_discount != 0 )
Coupon Discount ₹{{ $coupon_discount ?? ''}} ({{ $coupon }})
@endif
Total ₹{{ $total }}
@include('layouts.footer')