I have made pattern for address field, that works well on regex101.com, but when I used it on my page not working? Real problem pattern does not any response.
<form>
<input type="text" id="address" name="address" title="Address length must be 5 to 60, only one space between address, in start space and special character are not allow " placeholder="Your adress.." pattern="^[^-\s\W&(%#$^)][\da-zA-Z]{4,}+( [\d\Sa-zA-Z]+)*$" maxlength="60" required="required">
<input type="submit">
</form>