I used this Route type put in order to be able to update the profile of users:
Route::put('profile/{id}' , [ProfileController::class, 'updateProfile'])->name('user.profile-update');
However, when I link this route in my user-profile as :
{{route('users.profile-update', $user->id)}}
it's not reading it.