@extends('frontend.layouts.master') @section('content')
@csrf

{{ _trans('landlord.Billing Address') }}

count() > 0 ? 'checked' : '' }} name="address_type" id="oldAddress" value="old_address">
count() < 1 ? 'checked' : '' }} type="radio" name="address_type" id="newAddress" value="new_address">
@error('name') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('country') {{ $message }} @enderror
@error('postal') {{ $message }} @enderror
@if ($data['address']->count() > 0) @foreach ($data['address'] as $key => $address) @endforeach @else

No address found for this user.

@endif

Payment

All transactions are secure and encrypted.
{{--
--}} {{-- --}} {{--
--}}
@error('terms_and_condition') {{ $message }} @enderror
Return to shipping

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

@php $total = 0; @endphp @forelse($data['carts'] as $cart)

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

{{ priceFormat($cart->amount) }}

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

{{ priceFormat($cart->discount_amount) }}
@php $total += $cart->amount - $cart->discount_amount; @endphp @empty

{{ _trans('landlord.No property found') }}

@endforelse
{{ _trans('landlord.Total') }} (Incl. VAT)
{{ priceFormat($total) }}
@endsection @section('script') @include('frontend.customer.checkout_script') @endsection