move password lines into main translation file
This commit is contained in:
@@ -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."
|
|
||||||
}
|
|
||||||
@@ -100,6 +100,13 @@ return [
|
|||||||
'not_in' => 'The selected :attribute is invalid.',
|
'not_in' => 'The selected :attribute is invalid.',
|
||||||
'not_regex' => 'The :attribute format is invalid.',
|
'not_regex' => 'The :attribute format is invalid.',
|
||||||
'numeric' => 'The :attribute must be a number.',
|
'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.',
|
'present' => 'The :attribute field must be present.',
|
||||||
'prohibited' => 'The :attribute field is prohibited.',
|
'prohibited' => 'The :attribute field is prohibited.',
|
||||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||||
|
|||||||
Reference in New Issue
Block a user