diff --git a/templates/customer/form.html.twig b/templates/customer/form.html.twig
index d4c8ff65..65255dc0 100644
--- a/templates/customer/form.html.twig
+++ b/templates/customer/form.html.twig
@@ -85,7 +85,7 @@
@@ -579,7 +579,7 @@
});
return true;
- } else if (id.toString().length != 12) {
+ } else if (id.toString().length > 12) {
swal({
title: 'Whoops',
text: 'Invalid mobile number specified.',
@@ -917,7 +917,7 @@
columns: [
{
field: 'id',
- title: 'Mobile Number',
+ title: 'Contact Number',
template: function (row, index, datatable) {
return row.id + '';
}
diff --git a/templates/customer/list.html.twig b/templates/customer/list.html.twig
index 0bb7036a..f17b28de 100644
--- a/templates/customer/list.html.twig
+++ b/templates/customer/list.html.twig
@@ -97,7 +97,7 @@
},
{
field: 'mobile_numbers',
- title: 'Mobile Numbers',
+ title: 'Contact Numbers',
sortable: false
},
{
diff --git a/templates/job-order/form.html.twig b/templates/job-order/form.html.twig
index d395a52b..9ec1917f 100644
--- a/templates/job-order/form.html.twig
+++ b/templates/job-order/form.html.twig
@@ -70,7 +70,7 @@