I created User model in Django as:
email = models.EmailField(
verbose_name="Email Address", unique=True, null=True, blank=True)
When I try to register user with same email it show message user with this Email Address already exist, how can I customize this message to User with this email exist