fix: date validation on student form, instructor duplicacy fix on student grp, instructor with same employee id fix
diff --git a/erpnext/education/doctype/student_group/student_group.js b/erpnext/education/doctype/student_group/student_group.js
index 372e190..4165ce0 100644
--- a/erpnext/education/doctype/student_group/student_group.js
+++ b/erpnext/education/doctype/student_group/student_group.js
@@ -128,7 +128,7 @@
 		frm.fields_dict['instructors'].grid.get_field('instructor').get_query = function(doc){
 			let instructor_list = [];
 			$.each(doc.instructors, function(idx, val){
-					instructor_list.push(val.instructor);
+				instructor_list.push(val.instructor);
 			});
 			return { filters: [['Instructor', 'name', 'not in', instructor_list]] };
 		};