[Answered ]-ValidationError message doesn't appear in my own form

2👍

You need to include {{ form.mobile.errors }} to display errors for your mobile field.

See the working with form templates docs for more information.

You might want to investigate django crispy forms, which makes it easy to render bootstrap forms.

Leave a comment