From 9e1bc4e801078d98b811c0bc39f0c715dd6c635b Mon Sep 17 00:00:00 2001 From: Miles Cellar Date: Tue, 2 Oct 2018 19:56:14 +0200 Subject: [PATCH] Changes the translation for "required_with_all" validation rule See: https://github.com/laravel/laravel/commit/4b589c1a4a5ec04838408875fc3bd233dbcf5904#diff-9c04f727a922ad4f105b9ad764ec221d --- extensions/lang-english/locale/validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/lang-english/locale/validation.yml b/extensions/lang-english/locale/validation.yml index 4e0248592..5a96c46c9 100644 --- a/extensions/lang-english/locale/validation.yml +++ b/extensions/lang-english/locale/validation.yml @@ -76,7 +76,7 @@ validation: required_if: "The :attribute field is required when :other is :value." required_unless: "The :attribute field is required unless :other is in :values." required_with: "The :attribute field is required when :values is present." - required_with_all: "The :attribute field is required when :values is present." + required_with_all: "The :attribute field is required when :values are present." required_without: "The :attribute field is required when :values is not present." required_without_all: "The :attribute field is required when none of :values are present." same: "The :attribute and :other must match."