move password lines into main translation file

This commit is contained in:
Taylor Otwell 2022-04-20 09:16:59 -05:00
parent ba23174f1c
commit db0d052ece
2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +0,0 @@
{
"The :attribute must contain at least one letter.": "The :attribute must contain at least one letter.",
"The :attribute must contain at least one number.": "The :attribute must contain at least one number.",
"The :attribute must contain at least one symbol.": "The :attribute must contain at least one symbol.",
"The :attribute must contain at least one uppercase and one lowercase letter.": "The :attribute must contain at least one uppercase and one lowercase letter.",
"The given :attribute has appeared in a data leak. Please choose a different :attribute.": "The given :attribute has appeared in a data leak. Please choose a different :attribute."
}

View File

@ -100,6 +100,13 @@
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'The :attribute must be a number.',
'password' => [
'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.',
'letters' => 'The :attribute must contain at least one letter.',
'symbols' => 'The :attribute must contain at least one symbol.',
'numbers' => 'The :attribute must contain at least one number.',
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
],
'present' => 'The :attribute field must be present.',
'prohibited' => 'The :attribute field is prohibited.',
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',