From 78cb2685aade6416db81222f6f9b09edf9cdbb9c Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 26 Nov 2018 17:29:42 +0100 Subject: [PATCH] Add language entry for starts_with rule See https://github.com/laravel/framework/pull/26612 --- resources/lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 6c4571c3..8ab929cb 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -108,6 +108,7 @@ 'string' => 'The :attribute must be :size characters.', 'array' => 'The :attribute must contain :size items.', ], + 'starts_with' => 'The :attribute must start with one of the following: :values', 'string' => 'The :attribute must be a string.', 'timezone' => 'The :attribute must be a valid zone.', 'unique' => 'The :attribute has already been taken.',