laravel blade check if user is authenticated code example
Example 1: how to check if there is an authenticated user laravel
if (Auth::check()) { // The user is logged in... }
Example 2: is users logged in laravel blade
@auth
// user logged in
@else
// not logged in
@endauth