Skip to content

Commit 0869d96

Browse files
authored
Merge pull request laravel#4661 from driesvints/patch-1
[5.6] Fix alpha_dash
2 parents aefda0c + 7ff917a commit 0869d96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/lang/en/validation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'after' => 'The :attribute must be a date after :date.',
1919
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
2020
'alpha' => 'The :attribute may only contain letters.',
21-
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
21+
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
2222
'alpha_num' => 'The :attribute may only contain letters and numbers.',
2323
'array' => 'The :attribute must be an array.',
2424
'before' => 'The :attribute must be a date before :date.',

0 commit comments

Comments
 (0)