@sachin8094 Did you try to validate your input in the onBlur event? It works for me.
const [address, setAddress] = useState()
const simpleValidator = useRef(new SimpleReactValidator())
<Input
name="name"
value={companyInformation.name}
onChange={handleInputChange}
onBlur={simpleValidator.current.showMessageFor('name')} />
{simpleValidator.current.message('name', companyInformation.name, 'required')}
I try this but it's showing errors on page load not on onblur
Originally posted by @pooja-yadav-ctrl in #97 (comment)