commit
d4ff3b72e7
|
@ -1,6 +1,12 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.19...master)
|
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.20...master)
|
||||||
|
|
||||||
|
|
||||||
|
## [v8.5.20 (2021-06-15)](https://github.com/laravel/laravel/compare/v8.5.19...v8.5.20)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Add translation for current_password rule ([#5628](https://github.com/laravel/laravel/pull/5628))
|
||||||
|
|
||||||
|
|
||||||
## [v8.5.19 (2021-06-01)](https://github.com/laravel/laravel/compare/v8.5.18...v8.5.19)
|
## [v8.5.19 (2021-06-01)](https://github.com/laravel/laravel/compare/v8.5.18...v8.5.19)
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
],
|
],
|
||||||
'boolean' => 'The :attribute field must be true or false.',
|
'boolean' => 'The :attribute field must be true or false.',
|
||||||
'confirmed' => 'The :attribute confirmation does not match.',
|
'confirmed' => 'The :attribute confirmation does not match.',
|
||||||
|
'current_password' => 'The password is incorrect.',
|
||||||
'date' => 'The :attribute is not a valid date.',
|
'date' => 'The :attribute is not a valid date.',
|
||||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||||
'date_format' => 'The :attribute does not match the format :format.',
|
'date_format' => 'The :attribute does not match the format :format.',
|
||||||
|
|
Loading…
Reference in New Issue