From b54edfe504efd50c222eaeb3691c5e68e4e30f3c Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Sun, 12 Feb 2023 21:56:37 +0100 Subject: [PATCH] gif profile pics --- 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 0dd7009e..d64ec40a 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', 'max:1024'], + 'photo' => ['nullable', 'mimes:jpg,jpeg,png,gif', 'max:1024'], ]) ->validateWithBag('updateProfileInformation');