@extends('layouts.app')
@section('title', 'My Profile')
@section('breadcrumb')
Profile
@endsection
@section('content')
{{ $user->name }}
{{ $user->email }}
{{ $user->roles->first()?->name ?? 'No Role' }}
Last login: {{ $user->last_login_at?->diffForHumans() ?? 'Never' }}
IP: {{ $user->last_login_ip ?? 'N/A' }}
@endsection