diff --git a/users/templates/list_users.html b/users/templates/list_users.html
index 29c1d0a..fc15825 100644
--- a/users/templates/list_users.html
+++ b/users/templates/list_users.html
@@ -48,7 +48,7 @@
{% trans 'Email' %}: {{ acc.email }}
{% trans 'Contact' %}: {{ acc.phone }}
diff --git a/users/templates/users/create.html b/users/templates/users/create.html
index cf82964..914d378 100644
--- a/users/templates/users/create.html
+++ b/users/templates/users/create.html
@@ -71,7 +71,12 @@
{% endif %}
{% endfor %}
-
+
+
+
+
diff --git a/users/templates/users/update.html b/users/templates/users/update.html
index 662a6f5..2bd5aed 100644
--- a/users/templates/users/update.html
+++ b/users/templates/users/update.html
@@ -1,60 +1,85 @@
-{% extends 'app/base.html' %}
+{% extends 'list_users.html' %}
{% load static i18n %}
{% load widget_tweaks %}
+{% load django_bootstrap_breadcrumbs %}
+
{% block breadcrumbs %}
-
- - {% trans 'Home' %}
- - {% trans 'Edit user' %}
-
-{% endblock %}
-{% block sidebar %}
-
+ {{ block.super }}
+ {% breadcrumb 'Update User' 'users:update' %}
+
{% endblock %}
+
{% block content %}
-
-
-
{% trans 'All fields are required' %}
-
+ {% if messages %}
+ {% for message in messages %}
+
+
+
{{ message }}
+
+ {% endfor %}
+ {% endif %}
-