mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-20 11:47:53 +02:00
Fix Laravel 11 validation sources
This commit is contained in:
parent
f41b5f5d1c
commit
3a2e2fe9bd
@ -23,7 +23,6 @@ return [
|
|||||||
'alpha_num' => 'The :attribute field must only contain letters and numbers.',
|
'alpha_num' => 'The :attribute field must only contain letters and numbers.',
|
||||||
'array' => 'The :attribute field must be an array.',
|
'array' => 'The :attribute field must be an array.',
|
||||||
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
|
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
|
||||||
'attributes' => [],
|
|
||||||
'before' => 'The :attribute field must be a date before :date.',
|
'before' => 'The :attribute field must be a date before :date.',
|
||||||
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.',
|
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.',
|
||||||
'between' => [
|
'between' => [
|
||||||
@ -37,11 +36,6 @@ return [
|
|||||||
'confirmed' => 'The :attribute field confirmation does not match.',
|
'confirmed' => 'The :attribute field confirmation does not match.',
|
||||||
'contains' => 'The :attribute field is missing a required value.',
|
'contains' => 'The :attribute field is missing a required value.',
|
||||||
'current_password' => 'The password is incorrect.',
|
'current_password' => 'The password is incorrect.',
|
||||||
'custom' => [
|
|
||||||
'attribute-name' => [
|
|
||||||
'rule-name' => 'custom-message',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
'date' => 'The :attribute field must be a valid date.',
|
'date' => 'The :attribute field must be a valid date.',
|
||||||
'date_equals' => 'The :attribute field must be a date equal to :date.',
|
'date_equals' => 'The :attribute field must be a date equal to :date.',
|
||||||
'date_format' => 'The :attribute field must match the format :format.',
|
'date_format' => 'The :attribute field must match the format :format.',
|
||||||
@ -160,11 +154,11 @@ return [
|
|||||||
'starts_with' => 'The :attribute field must start with one of the following: :values.',
|
'starts_with' => 'The :attribute field must start with one of the following: :values.',
|
||||||
'string' => 'The :attribute field must be a string.',
|
'string' => 'The :attribute field must be a string.',
|
||||||
'timezone' => 'The :attribute field must be a valid timezone.',
|
'timezone' => 'The :attribute field must be a valid timezone.',
|
||||||
'ulid' => 'The :attribute field must be a valid ULID.',
|
|
||||||
'unique' => 'The :attribute has already been taken.',
|
'unique' => 'The :attribute has already been taken.',
|
||||||
'uploaded' => 'The :attribute failed to upload.',
|
'uploaded' => 'The :attribute failed to upload.',
|
||||||
'uppercase' => 'The :attribute field must be uppercase.',
|
'uppercase' => 'The :attribute field must be uppercase.',
|
||||||
'url' => 'The :attribute field must be a valid URL.',
|
'url' => 'The :attribute field must be a valid URL.',
|
||||||
|
'ulid' => 'The :attribute field must be a valid ULID.',
|
||||||
'uuid' => 'The :attribute field must be a valid UUID.',
|
'uuid' => 'The :attribute field must be a valid UUID.',
|
||||||
|
|
||||||
'single' => 'When using :attribute it must be the only parameter in this request body',
|
'single' => 'When using :attribute it must be the only parameter in this request body',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user