Example How to use @auth and @guest directives in Laravel.
Instead of if-statement to check logged in user, use @auth directive.
Typical way:
@if(auth()->user())
// The user is authenticated.
@endif
Shorter:
@auth
// The user is authenticated.
@endauth
The opposite is @guest directive.
@guest
// The user is not authenticated.
@endguest