diff --git a/CHANGELOG.md b/CHANGELOG.md index 64fedcda..1d0d7cda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.1...master) +## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.2...master) + + +## [v8.6.2 (2021-09-07)](https://github.com/laravel/laravel/compare/v8.6.1...v8.6.2) + +### Changed +- Dark mode auth links contrast ([#5678](https://github.com/laravel/laravel/pull/5678)) +- Added prohibits validation message ([#5681](https://github.com/laravel/laravel/pull/5681)) ## [v8.6.1 (2021-08-24)](https://github.com/laravel/laravel/compare/v8.6.0...v8.6.1) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 6ee8d8d7..21791139 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -109,6 +109,7 @@ return [ 'prohibited' => 'The :attribute field is prohibited.', 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', + 'prohibits' => 'The :attribute field prohibits :other from being present.', 'same' => 'The :attribute and :other must match.', 'size' => [ 'numeric' => 'The :attribute must be :size.', diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index b1905c92..754e4274 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -11,7 +11,7 @@