{{-- Account area: full-width, fixed-width sidebar + fluid content. Pages set @section('title') and fill @section('account'). Below lg the sidebar becomes a horizontally scrollable row above the content. --}} @extends('layouts.app') @push('seo') @endpush @php $accountNav = [ [ 'label' => __('storefront.account.nav_profile'), 'href' => route('account'), 'active' => request()->routeIs('account', 'account.email.*'), ], [ 'label' => __('storefront.account.nav_orders'), 'href' => route('account.orders'), 'active' => request()->routeIs('account.orders*'), ], [ 'label' => __('storefront.account.nav_wishlist'), 'href' => route('account.wishlist'), 'active' => request()->routeIs('account.wishlist'), ], ]; $accountNavLink = 'nav-link uppercase inline-flex shrink-0 whitespace-nowrap font-display font-extrabold italic text-black no-underline'; @endphp @section('content')