From a0cf95d2a0dd9a5c4fa46b6e5a7861df68f92ed9 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Mon, 13 Feb 2023 13:37:15 +0100 Subject: [PATCH] max:10240 --- app/Actions/Fortify/UpdateUserProfileInformation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Actions/Fortify/UpdateUserProfileInformation.php b/app/Actions/Fortify/UpdateUserProfileInformation.php index d64ec40a..a39c3024 100644 --- a/app/Actions/Fortify/UpdateUserProfileInformation.php +++ b/app/Actions/Fortify/UpdateUserProfileInformation.php @@ -29,7 +29,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation 'nullable', 'email', 'max:255', Rule::unique('users') ->ignore($user->id) ], - 'photo' => ['nullable', 'mimes:jpg,jpeg,png,gif', 'max:1024'], + 'photo' => ['nullable', 'mimes:jpg,jpeg,png,gif', 'max:10240'], ]) ->validateWithBag('updateProfileInformation');