Is it possible to do something like this? ```php Page::$reportValidationErrorUsing = function (ValidationException $exception) { session()->flash('errors_exception', 'Oeps, het ingevulde formulier bevat één of meerdere problemen.'); session()->flash('errors', $exception->validator->errors()); // Not working because it isn't a static method Page::dispatchBrowserEvent('scroll-to', [ 'query' => "#alert-errors", 'offset' => 120, ]); }; ```