Skip to content

Commit

Permalink
Update ProfileController.php
Browse files Browse the repository at this point in the history
  • Loading branch information
OhmygoodR authored May 11, 2024
1 parent c3eca4c commit ca0895a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/ProfileController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
]);
}

Expand Down

0 comments on commit ca0895a

Please sign in to comment.