@if (session('login-success-data'))
{{ __('messages.login_success', session('login-success-data')) }}
@else
{{ __('Main page') }}
@endif
@if (session('unauthorizedAction'))
@endif
{{-- Show the secondary / success / info / error /alert notification session messages --}}
@if (session('notification'))
@endif
{{-- Show the notification message that profile has been switched --}}
@if (session('profile-switched-notification'))
@endif
{{-- Show the notification message that the email address has been verified --}}
@if (session('email-verified'))
@endif
@if (session('results'))
@livewire('search.show', ['results' => session('results')])
@endif
@if(getActiveProfileType() === 'Admin')