Redux-form 6.0.0 access error outside Field component
In Redux-form v5 I was able to access to the "inline" errors (async validation) from anywhere in the decorated form, like so: const fields = [ 'email' ] // inside the decorated form const { email } = this.props.fields console.log(email.error) // 'the validation error of the 'email' field How can I achieve the same thing using Redux-form 6.0.0+ ? If you are wanting to display the error next to the input, then it should be handled in the component that you pass to Field . If you want to display all the errors together, like at the bottom of the form by the submit button, you could use the new