@include('theme-views.partials._profile-aside')

{{ $total_order }}

{{translate('Orders')}}

{{ $wishlists }}

{{translate('wishlist')}}

{{ webCurrencyConverter($total_wallet_balance ?? 0) }}

{{translate('wallet')}}

{{$total_loyalty_point}}

{{translate('loyalty_point')}}
{{translate('Personal_Details')}}
{{ translate('edit_profile') }}
{{translate('first_name')}}
{{$customer_detail['f_name']}}
{{translate('last_name')}}
{{$customer_detail['l_name']}}
{{translate('phone')}}
{{$customer_detail['phone']}} @if($customer_detail['phone'] && getLoginConfig(key: 'phone_verification')) @if($customer_detail['is_phone_verified']) @else @endif @endif
{{translate('email')}}
{{$customer_detail['email']}} @if($customer_detail['email'] && getLoginConfig(key: 'email_verification')) @if($customer_detail['is_email_verified']) @else @endif @endif
{{translate('my_addresses')}}
{{translate('add_address')}}
@foreach($addresses as $address)
{{translate($address['address_type'])}} ({{ $address['is_billing'] == 1 ? translate('billing_address'):translate('shipping_address')}})
{{translate('name')}}
{{$address['contact_person_name']}}
{{translate('phone')}}
{{$address['phone']}}
{{translate('address')}}
{{$address['address']}}
@endforeach
@if(count($addresses) == 0)
{{ translate('No_address_found') }}!
@endif