@extends('layouts.frontend-layout') @section('content')

Profile

Account Details

@if($customer->image)
@endif

Name : {{ $customer->name }}

Email : {{ $customer->email }}

Phone : {{ $customer->phone }}

Address : {{ $customer->address }}

Billing Address

@if($customer->billing)

Name : {{ $customer->billing?$customer->billing->name:"" }}

Email : {{ $customer->billing?$customer->billing->email:"" }}

Phone : {{ $customer->billing?$customer->billing->phone:"" }}

Address : {{ $customer->billing?$customer->billing->address:"" }}

Country : {{ $customer->billing?$customer->billing->country:"" }}

Town/City : {{ $customer->billing?$customer->billing->town_city:"" }}

Zip Code : {{ $customer->billing?$customer->billing->zip_code:"" }}

@else

Please Go to Manage Billing & Delivery Address Menu For Setup Billing Address

@endif

Delivery Address

@if($customer->billing)

Name : {{ $customer->shipping?$customer->shipping->ship_name:"" }}

Email : {{ $customer->shipping?$customer->shipping->ship_email:"" }}

Phone : {{ $customer->shipping?$customer->shipping->ship_phone:"" }}

Address : {{ $customer->shipping?$customer->shipping->ship_address:"" }}

Country : {{ $customer->shipping?$customer->shipping->ship_country:"" }}

Town/City : {{ $customer->shipping?$customer->shipping->ship_town_city:"" }}

Zip Code : {{ $customer->shipping?$customer->shipping->ship_zip_code:"" }}

@else

Please Go to Manage Billing & Delivery Address Menu For Setup Billing Address

@endif
@endsection