@extends('marsland::layouts.master') @section('title', _trans('landlord.Checkout')) @section('marsland-content')
@csrf
{{ _trans('landlord.Billing Address') }}
@foreach($addresses as $address)
@endforeach @error('billing_address_id') {{ $message }} @enderror
{{ _trans('landlord.Add New Address') }}
@error('name') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('country_id') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
{{ _trans('landlord.Payment') }}
@error('terms_and_condition') {{ $message }} @enderror

{{ _trans('landlord.Order Summary') }}

{{ _trans('landlord.Original Price') }}

{{ priceFormat($subtotal) }}

{{ _trans('landlord.Discounts') }}

{{ $total_discount }}

{{ _trans('landlord.Sub Total') }}

{{ priceFormat($subtotal) }}

{{ _trans('landlord.Total') }}

{{ priceFormat($subtotal - $total_discount) }}

@endsection @push('script') @endpush