@extends(EcommerceHelper::viewPath('customers.master')) @section('title', __('Overview')) @section('content') @php $customer = auth('customer')->user(); EcommerceHelper::registerThemeAssets(); @endphp
{{ RvMedia::image($customer->avatar_url, $customer->name, attributes: ['class' => 'bb-customer-profile-avatar-img', 'data-bb-value' => 'customer-avatar']) }}

{!! BaseHelper::clean(__('Welcome back, :name!', ['name' => $customer->name])) !!}

{{ __('Manage your account, view orders, and update your preferences from your personal dashboard.') }}

{{ __('View Orders') }}

{{ __('Track your recent orders and order history') }}

{{ __('View Orders') }}
{{ __('Manage Addresses') }}

{{ __('Update your shipping and billing addresses') }}

{{ __('Manage Addresses') }}
{{ __('Account Settings') }}

{{ __('Edit your profile and account details') }}

{{ __('Edit Account') }}
@if (! $customer->orders()->exists())
{{ __('Ready to start shopping?') }}

{{ __("You haven't placed any orders yet. Browse our products and find something you love!") }}

@endif @endsection