@extends(Theme::getThemeNamespace() . '::views.ecommerce.customers.master') @section('content') @php $customer = auth('customer')->user(); @endphp
{!! BaseHelper::clean(__('Hello :name (not :name? Log out)', [ 'name' => $customer->name, 'link' => route('customer.logout'), ])) !!}
{!! BaseHelper::clean(__('From your account dashboard you can view your recent orders, manage your shipping and billing addresses, and edit your password and account details.', [ 'order' => route('customer.orders'), 'addresses' => route('customer.address'), 'edit_account' => route('customer.edit-account'), ])) !!}
@if (!$customer->orders()->count()){{ __('The following addresses will be used on the checkout page by default') }}.