Is there any way to perform server side form validation using https://github.com/marmelab/react-admin package?
Here\'s the code for AdminCreate Component. It sends c
Here one more solution from official repo. https://github.com/marmelab/react-admin/pull/871 You need to import HttpError(message, status, body) in DataProvider and throw it. Then in errorSaga parse body to redux-form structure. That's it. Enjoy.