fix: standardize password min length to 8 across all auth endpoints

This commit is contained in:
root
2026-05-23 17:11:23 +02:00
parent b46c278dba
commit 14a40b9bb2
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class RegisterRequest extends FormRequest
{
return [
'username' => ['required', 'string', 'max:50'],
'password' => ['required', 'string', 'min:6'],
'password' => ['required', 'string', 'min:8'],
'mail' => ['required', 'email', 'max:255'],
'look' => ['nullable', 'string'],
'motto' => ['nullable', 'string', 'max:100'],