@extends('layouts.public') @section('content')

Overview

Basic info

Edit info

{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}

{{ Auth::user()->email }}
@if(Auth::user()->phone)
{{ Auth::user()->phone }}
@endif
Profile completion 75%
@if(Auth::user()->gender) @endif @if(Auth::user()->dob) @endif
Phone {{ Auth::user()->phone ?? 'Not set' }}
Language {{ Auth::user()->language ? (config('profile.languages')[Auth::user()->language] ?? Auth::user()->language) : (config('profile.languages')[app()->getLocale()] ?? app()->getLocale()) }}
Time zone {{ Auth::user()->timezone ? (config('profile.timezones')[Auth::user()->timezone] ?? Auth::user()->timezone) : 'Not set' }}
Currency {{ Auth::user()->currency ? (config('profile.currencies')[Auth::user()->currency] ?? Auth::user()->currency) : 'Not set' }}
Gender {{ Auth::user()->gender == 1 ? 'Male' : 'Female' }}
Date of Birth {{ Auth::user()->dob }}

0 bonuses

1 bonus = $1

Address

Edit info
@if(Auth::user()->address || Auth::user()->city || Auth::user()->country)

Shipping address

Primary

@if(Auth::user()->address){{ Auth::user()->address }}
@endif @if(Auth::user()->city){{ Auth::user()->city }},@endif @if(Auth::user()->state) {{ Auth::user()->state }}@endif @if(Auth::user()->zip) {{ Auth::user()->zip }}@endif
@if(Auth::user()->country){{ Auth::user()->country }}@endif

@else

No address set

@endif

Billing

Edit info

{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}

Primary

No payment methods added yet.

Recent Orders

View all

No orders yet.

@endsection