Browse Source

Merge pull request #4661 from driesvints/patch-1

[5.6] Fix alpha_dash
Taylor Otwell 6 years ago
parent
commit
0869d963aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/lang/en/validation.php

+ 1 - 1
resources/lang/en/validation.php

@@ -18,7 +18,7 @@ return [
     'after'                => 'The :attribute must be a date after :date.',
     'after_or_equal'       => 'The :attribute must be a date after or equal to :date.',
     'alpha'                => 'The :attribute may only contain letters.',
-    'alpha_dash'           => 'The :attribute may only contain letters, numbers, and dashes.',
+    'alpha_dash'           => 'The :attribute may only contain letters, numbers, dashes and underscores.',
     'alpha_num'            => 'The :attribute may only contain letters and numbers.',
     'array'                => 'The :attribute must be an array.',
     'before'               => 'The :attribute must be a date before :date.',