commit
b2ac03183b
|
@ -1,6 +1,12 @@
|
||||||
# Release Notes
|
# Release Notes
|
||||||
|
|
||||||
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.10...master)
|
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.11...master)
|
||||||
|
|
||||||
|
|
||||||
|
## [v8.5.11 (2021-02-23)](https://github.com/laravel/laravel/compare/v8.5.10...v8.5.11)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Don't flash 'current_password' input ([#5541](https://github.com/laravel/laravel/pull/5541))
|
||||||
|
|
||||||
|
|
||||||
## [v8.5.10 (2021-02-16)](https://github.com/laravel/laravel/compare/v8.5.9...v8.5.10)
|
## [v8.5.10 (2021-02-16)](https://github.com/laravel/laravel/compare/v8.5.9...v8.5.10)
|
||||||
|
|
|
@ -22,6 +22,7 @@ class Handler extends ExceptionHandler
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $dontFlash = [
|
protected $dontFlash = [
|
||||||
|
'current_password',
|
||||||
'password',
|
'password',
|
||||||
'password_confirmation',
|
'password_confirmation',
|
||||||
];
|
];
|
||||||
|
|
|
@ -32,7 +32,7 @@ public function definition()
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Define the model's unverified state.
|
* Indicate that the model's email address should be unverified.
|
||||||
*
|
*
|
||||||
* @return \Illuminate\Database\Eloquent\Factories\Factory
|
* @return \Illuminate\Database\Eloquent\Factories\Factory
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue