From ca0895a58651d38f3c3c978817e8093d526fcd83 Mon Sep 17 00:00:00 2001 From: OhmygoodR <109280933+OhmygoodR@users.noreply.github.com> Date: Sat, 11 May 2024 20:50:25 +0800 Subject: [PATCH] Update ProfileController.php --- app/Http/Controllers/ProfileController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index c635e2ce..c6888b87 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -24,7 +24,7 @@ public function update(ProfileUpdateRequest $request) if($request->filled('password')){ $user->update([ - 'password'=>Hash::make($request->password); + 'password'=>Hash::make($request->password) ]); }