In that case, you do not have an authenticated user.
I expect that you are most likely using a view component/partial which was intended for view(s) to be shown to authenticated users only? Since you own the view template (i.e. it is not in a vender sub-directory), you can wrap relevant parts in an @auth check
Up to you. However, entire divs will not make sense if there is not authenticated user, so it'd make sense to identify these areas of the template and wrap them in the auth check.
If you are using Jetstream, it uses Forty, so if you created user groups and these created with a seeder it does not add a group, if you want to quickly solve it, it is to create a record in team_user and add it to the created users.
ErrorException, Attempt to read property "name" on null, {{ Auth::user()->name }}....I have a similar problem, the login is fine, it's just that when I leave the computer alone and come back, it throws me an error message Auth::user()->name, this must be because the session expired, but the query is I can control this? something that sends the user back to login instead of sending this error
@claudiorigo use the auth middleware on Routes that need an authenticated user (and ultimately that return view(s) that expect an authenticated user). Redirection to login will be automatic whenever the user navigates to such routes after the Session has expired.