@vite(['resources/css/app.css', 'resources/js/app.js']) @stack('head')
Retail Partner
Home
Company
Catalog
Why Vida Mansa
Photos & Videos
How to Order
Contact
@php $cartContext = app(\App\Services\Cart\CartService::class)->forRequest(request(), false); $cartCount = $cartContext?->cart->loadMissing('items')->totalQuantity() ?? 0; @endphp
Cart
@if ($cartCount > 0)
{{ $cartCount }}
@endif
@guest
Sign in
@endguest @auth
Orders
My account
@csrf
Log out
@endauth {{-- Hamburger button — mobile only --}}
{{-- Mobile menu panel --}}
Home
Company
Catalog
Why Vida Mansa
Photos & Videos
How to Order
Contact
@guest
Sign in
@endguest @auth
Orders
My account
@csrf
Log out
@endauth
@guest {{-- Promotional marquee subheader --}}
@for ($i = 0; $i < 10; $i++)
Wholesale prices available now • Free shipping across the U.S.
●
@endfor
@endguest
@yield('content')