From 7e5739d266bba4624f933f547f111ee6ad26e095 Mon Sep 17 00:00:00 2001 From: Mike Hayes Date: Thu, 11 May 2017 00:40:34 +0100 Subject: [PATCH] Add IPv4/IPv6 validation messages --- resources/lang/en/validation.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 2a5c74341be..edc036dd01b 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -47,6 +47,8 @@ 'in_array' => 'The :attribute field does not exist in :other.', 'integer' => 'The :attribute must be an integer.', 'ip' => 'The :attribute must be a valid IP address.', + 'ipv4' => 'The :attribute must be a valid IPv4 address.', + 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', 'max' => [ 'numeric' => 'The :attribute may not be greater than :max.',