From a7c2a7a2d3bad83b06f74ec727279d85de174942 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Wed, 21 Oct 2015 11:13:55 +1030 Subject: [PATCH] Increase username max length Not sure why it was at 8! --- src/Core/Validator/UserValidator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Validator/UserValidator.php b/src/Core/Validator/UserValidator.php index ea81e9da7..7fd421e41 100644 --- a/src/Core/Validator/UserValidator.php +++ b/src/Core/Validator/UserValidator.php @@ -18,7 +18,7 @@ class UserValidator extends AbstractValidator 'alpha_dash', 'unique:users', 'min:3', - 'max:8' + 'max:30' ], 'email' => [ 'required',