fix: education settings check
diff --git a/erpnext/education/doctype/student/student.js b/erpnext/education/doctype/student/student.js
index 5b05bc4..fd23ae4 100644
--- a/erpnext/education/doctype/student/student.js
+++ b/erpnext/education/doctype/student/student.js
@@ -27,7 +27,7 @@
 		}
 
 		frappe.db.get_value('Education Settings', {name: 'Education Settings'}, 'user_creation_skip', (r) => {
-			if (r.user_creation_skip === "0") {
+			if (cint(r.user_creation_skip) !== 1) {
 				frm.set_df_property('student_email_id', 'reqd', 1);
 			}
 		});
diff --git a/erpnext/education/doctype/student_applicant/student_applicant.js b/erpnext/education/doctype/student_applicant/student_applicant.js
index 27b3377..b4cfdf1 100644
--- a/erpnext/education/doctype/student_applicant/student_applicant.js
+++ b/erpnext/education/doctype/student_applicant/student_applicant.js
@@ -39,7 +39,7 @@
 		});
 
 		frappe.db.get_value("Education Settings", {name: "Education Settings"}, "user_creation_skip", (r) => {
-			if (r.user_creation_skip === "0") {
+			if (cint(r.user_creation_skip) !== 1) {
 				frm.set_df_property("student_email_id", "reqd", 1);
 			}
 		});