From b71a90a3c537b862c55e28d5921dffa35de262d8 Mon Sep 17 00:00:00 2001 From: spencerrlongg Date: Mon, 18 Nov 2024 12:44:24 -0600 Subject: [PATCH] this should be all it takes to fix this, i think --- app/Http/Controllers/Auth/ForgotPasswordController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Auth/ForgotPasswordController.php b/app/Http/Controllers/Auth/ForgotPasswordController.php index a7322e7e59..8e6ff46fde 100644 --- a/app/Http/Controllers/Auth/ForgotPasswordController.php +++ b/app/Http/Controllers/Auth/ForgotPasswordController.php @@ -57,7 +57,7 @@ class ForgotPasswordController extends Controller * payloads through. */ $request->validate([ - 'username' => ['required', 'max:255'], + 'username' => ['required', 'max:255', 'string'], ]); /**