Update RegisterController

pull/413/head
Daniel Supernault 2018-08-27 11:24:28 -06:00
rodzic 3565f73a5e
commit b7c7757cff
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -65,7 +65,7 @@ class RegisterController extends Controller
];
$rules = [
'name' => 'required|string|max' . config('pixelfed.max_name_length'),
'name' => 'required|string|max:' . config('pixelfed.max_name_length'),
'username' => $usernameRules,
'email' => 'required|string|email|max:255|unique:users',
'password' => 'required|string|min:6|confirmed',