{{-- Profile link — only visible to influencers --}}
@if(auth()->user()->role === 'influencer')
My Profile
@endif
{{-- Logout --}}
{{-- Flash messages --}}
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error') || $errors->any())
{{ session('error') ?? $errors->first() }}
@endif
{{-- ══════════════════════════════════════════════
Styles & script — paste into your global CSS
if you prefer keeping concerns separated
════════════════════════════════════════════════ --}}