Merge branch '8.x'

# Conflicts:
#	CHANGELOG.md
This commit is contained in:
Dries Vints 2021-03-02 17:37:08 +01:00
commit 941bd32ea8
No known key found for this signature in database
GPG Key ID: E1529B3ACC4A5A76
3 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,13 @@
# Release Notes # Release Notes
## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.11...master) ## [Unreleased](https://github.com/laravel/laravel/compare/v8.5.12...master)
## [v8.5.12 (2021-03-02)](https://github.com/laravel/laravel/compare/v8.5.11...v8.5.12)
### Fixed
- Added sans-serif as Fallback Font ([#5543](https://github.com/laravel/laravel/pull/5543))
- Don't trim `current_password` ([#5546](https://github.com/laravel/laravel/pull/5546))
## [v8.5.11 (2021-02-23)](https://github.com/laravel/laravel/compare/v8.5.10...v8.5.11) ## [v8.5.11 (2021-02-23)](https://github.com/laravel/laravel/compare/v8.5.10...v8.5.11)

View File

@ -12,6 +12,7 @@ class TrimStrings extends Middleware
* @var array * @var array
*/ */
protected $except = [ protected $except = [
'current_password',
'password', 'password',
'password_confirmation', 'password_confirmation',
]; ];

View File

@ -16,7 +16,7 @@
<style> <style>
body { body {
font-family: 'Nunito'; font-family: 'Nunito', sans-serif;
} }
</style> </style>
</head> </head>