Trying to show the current signed in users profile. What am i doing wrong | Laravel 9
Trying to show the current signed in user's profile. What am i doing wrong.This is the function on the controller. I'm using Laravel 9 public function show(User $user) { return view('users.index', with('user', $user)); } This is the routes Route::resource('users', UsersController::class)->middleware('auth');…