Drupal 8 Form Redirect On Failed Validation
If you want the redirect to happen immediately, you can do it like this:
use Symfony\Component\HttpFoundation\RedirectResponse;
$response = new RedirectResponse('/path/destination');
$response->send();
if you want to disable redirection in some forms you can use code like this:
$form_state->disableRedirect();