@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( __('Hello :name,', [ 'name' => $customer->name, ]), ) !!}

{!! 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()->exists()) @endif
@endsection