diff --git a/resources/views/layouts/adminnav.blade.php b/resources/views/layouts/adminnav.blade.php
index 1ae0fd8..13b43ed 100644
--- a/resources/views/layouts/adminnav.blade.php
+++ b/resources/views/layouts/adminnav.blade.php
@@ -231,9 +231,9 @@
@if(session()->has('admin_id'))
-
+
+ {{ session('admin_name', 'Admin') }}
-
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php
index f66bae8..ab5df98 100644
--- a/resources/views/layouts/app.blade.php
+++ b/resources/views/layouts/app.blade.php
@@ -178,10 +178,13 @@
cursor: pointer;
color: white;
display: flex;
+ flex-direction: column;
align-items: center;
- gap: 8px;
+ justify-content: center;
+ gap: 2px;
user-select: none;
text-decoration: none !important;
+ line-height: 1.1;
}
.user-dropdown-toggle:hover {
@@ -189,12 +192,14 @@
}
.user-profile-name {
- font-weight: 600;
- font-size: 14px;
- max-width: 120px;
+ font-weight: 500;
+ font-style: italic;
+ font-size: 11px;
+ max-width: 110px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
+ text-align: center;
}
.dropdown-menu {
diff --git a/resources/views/layouts/studentportalnav.blade.php b/resources/views/layouts/studentportalnav.blade.php
index 33a4aa3..6b4dee2 100644
--- a/resources/views/layouts/studentportalnav.blade.php
+++ b/resources/views/layouts/studentportalnav.blade.php
@@ -221,9 +221,9 @@
@if(session()->has('student_id'))
-
+
+ {{ session('student_name') }}
-
diff --git a/resources/views/students.blade.php b/resources/views/students.blade.php
index da6d1cb..5ed5738 100644
--- a/resources/views/students.blade.php
+++ b/resources/views/students.blade.php
@@ -578,6 +578,34 @@ h1, h2, h3, h4, h5, h6 {
background-color: #ffffff;
}
+.input-group .form-control:not(:last-child) {
+ border-top-right-radius: 0 !important;
+ border-bottom-right-radius: 0 !important;
+}
+
+.toggle-password-btn {
+ background-color: #F8FAFC;
+ border: 1px solid #CBD5E1;
+ border-left: none;
+ color: #64748B;
+ border-top-right-radius: 12px !important;
+ border-bottom-right-radius: 12px !important;
+ padding-left: 14px;
+ padding-right: 14px;
+ cursor: pointer;
+ transition: all 0.2s ease;
+}
+
+.toggle-password-btn:hover {
+ background-color: #E2E8F0;
+ color: #1E293B;
+ border-color: #CBD5E1;
+}
+
+.input-group:focus-within .toggle-password-btn {
+ border-color: var(--primary-light);
+}
+
.modal-footer {
border-top: none;
padding: 0 30px 35px;
@@ -984,6 +1012,9 @@ h1, h2, h3, h4, h5, h6 {
+
@@ -992,13 +1023,15 @@ h1, h2, h3, h4, h5, h6 {
+
-
@@ -1006,6 +1039,22 @@ h1, h2, h3, h4, h5, h6 {