From 9215e54263b913d71e309e7cfbe880a94112fd96 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 11 Sep 2020 13:37:03 -0500 Subject: [PATCH] update what is passed to custom callback --- src/Http/Controllers/ConfirmablePasswordController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Controllers/ConfirmablePasswordController.php b/src/Http/Controllers/ConfirmablePasswordController.php index bd89f3fd..12b2abe0 100644 --- a/src/Http/Controllers/ConfirmablePasswordController.php +++ b/src/Http/Controllers/ConfirmablePasswordController.php @@ -76,7 +76,7 @@ protected function confirmPasswordUsingCustomCallback(Request $request) return call_user_func( Fortify::$confirmPasswordsUsingCallback, $request->user(), - $request + $request->input('password') ); } }