Dashboard
@csrf
{{ strtoupper(substr($user->first_name ?? $user->username, 0, 1)) }}

Welcome back, {{ $user->first_name ?? $user->username }}!

Here's what's happening with your account.

@if(!$user->hasVerifiedEmail())

Your email is not verified yet.
Please check your inbox for the verification link, or click below to resend.

@if(session('status') == 'verification-link-sent')

A new verification link has been sent to your email.

@endif
@csrf
@endif

Username

{{ $user->username }}

Email

{{ $user->email }}

Full Name

{{ $user->full_name ?? $user->first_name . ' ' . $user->last_name }}

Last Login

{{ $user->last_login_at ? $user->last_login_at->diffForHumans() : 'First time' }}

Debug Info (Session & Guards)