Retorne os detalhes do usuário do controlador para visualizar
$user = User::query()->where('id','=', $id)->first();
return view('user.profile', compact('user'));
Ill Iguana
$user = User::query()->where('id','=', $id)->first();
return view('user.profile', compact('user'));