@guest
@yield('content')
@endguest
@auth
@if (in_array(request()->route()->getName(), ['login', 'register', 'recover-password']))
@yield('content')
@else
@if (!in_array(request()->route()->getName(), ['profile', 'profile-static']))
@elseif (in_array(request()->route()->getName(), ['profile-static', 'profile']))
@endif
@include("layouts.navbars.auth.".auth()->user()->user_type.".sidenav")
@yield('content')
@include('components.fixed-plugin')
@endif
@endauth
@stack('js');