namespace BookStack\Http\Middleware;
-use Illuminate\Foundation\Http\Middleware\TrimStrings as BaseTrimmer;
+use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
-class TrimStrings extends BaseTrimmer
+class TrimStrings extends Middleware
{
/**
* The names of the attributes that should not be trimmed.
protected $except = [
'password',
'password_confirmation',
+ 'password-confirm',
];
}