delete account

This commit is contained in:
Muzakki Parsaoran Siregar 2025-09-04 13:32:27 +07:00
parent 0252dc8326
commit 7cba5c3ebd

View File

@ -100,53 +100,6 @@
border-left: none; border-left: none;
} }
/* BOTTOM PROFILE */
.sidebar-bottom {
padding: 15px 20px;
border-top: 1px solid #eee;
background: #fafafa;
}
.sidebar-bottom .logout {
color: #dc3545;
display: flex;
align-items: center;
font-weight: 600;
text-decoration: none;
font-size: 14px;
}
.sidebar-bottom .logout i {
margin-right: 8px;
}
.sidebar-bottom .profile {
margin-top: 15px;
display: flex;
align-items: center;
gap: 10px;
}
.sidebar-bottom .profile img {
width: 38px;
height: 38px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ddd;
}
.sidebar-bottom .profile p {
margin: 0;
font-size: 14px;
font-weight: 600;
color: #333;
}
.sidebar-bottom .profile small {
font-size: 12px;
color: #6c757d;
}
/* MAIN CONTENT */ /* MAIN CONTENT */
.main-content { .main-content {
margin-left: 250px; margin-left: 250px;
@ -231,26 +184,14 @@
</li> </li>
</ul> </ul>
</div> </div>
<!-- PROFILE BOX DI PALING BAWAH -->
<div class="sidebar-bottom border-top p-3">
<div class="d-flex align-items-center">
<img src="{{ asset('default-avatar.png') }}" alt="Admin" class="rounded-circle me-2"
style="width:40px; height:40px;">
<div>
<p class="mb-0 fw-semibold">{{ auth('admin')->user()->name }}</p>
<small class="text-muted">{{ auth('admin')->user()->email }}</small>
</div>
</div>
</div>
</div> </div>
<!-- MAIN CONTENT --> <!-- MAIN CONTENT -->
<div class="main-content"> <div class="main-content">
@yield('content') @yield('content')
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body> </body>
</html> </html>