@vite(['resources/sass/app.scss', 'resources/js/app.js'])
@if(Auth::check() && Auth::user()->role === 'admin' && session('impersonating'))
You are impersonating a user. Please be mindful of your actions.
@endif
@if(Auth::check() && Auth::user()->role === 'admin')
User Management
View All Users
Create New Admin
Create New Agent
Campaigns
View All Campaigns
Create New Campaign
@endif @if(Auth::check() && Auth::user()->role === 'user')
Inbox
Outbox
Contacts
@endif
@if(Auth::check() && Auth::user()->role === 'user')
@endif @auth
@endauth @guest
Login
@else
{{ Auth::user()->name }}
User Profile
Logout
@csrf
@endguest
@yield('content')
@stack('scripts')