at app/Exceptions/Handler.php find render function:
if (config('app.debug') === false) { return $this->handleExceptions($e); }
replace by
if (config('app.debug') === false && !($e instanceof ValidationException)) { return $this->handleExceptions($e); }