diff --git a/app/Actions/Fortify/UpdateUserProfileInformation.php b/app/Actions/Fortify/UpdateUserProfileInformation.php index 7bd2ea36..9dab5848 100644 --- a/app/Actions/Fortify/UpdateUserProfileInformation.php +++ b/app/Actions/Fortify/UpdateUserProfileInformation.php @@ -22,7 +22,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation 'apellidoPaterno' => ['nullable', 'string', 'max:255'], 'apellidoMaterno' => ['nullable', 'string', 'max:255'], 'email' => ['required', 'email', 'max:255', Rule::unique('users')->ignore($user->id)], - 'photo' => ['nullable', 'mimes:jpg,jpeg,png', 'max:1024'], + 'photo' => ['nullable', 'mimes:jpg,jpeg,png', 'max:5120'], ])->validateWithBag('updateProfileInformation'); if (isset($input['photo'])) { diff --git a/app/Http/Controllers/EntregaController.php b/app/Http/Controllers/EntregaController.php index e33c1116..6893ed8e 100644 --- a/app/Http/Controllers/EntregaController.php +++ b/app/Http/Controllers/EntregaController.php @@ -71,7 +71,7 @@ class EntregaController extends Controller public function store(Request $request, Tarea $tarea) { $request->validate([ - 'archivo' => 'nullable|file|max:2048', + 'archivo' => 'nullable|file|max:20480', 'texto' => 'nullable|string|max:5000', ]);