66 lines
2.5 KiB
PHP
66 lines
2.5 KiB
PHP
<!-- ======= Header ======= -->
|
|
<header id="header" class="header fixed-top d-flex align-items-center">
|
|
|
|
<div class="d-flex align-items-center justify-content-between">
|
|
<a href="index.html" class="logo d-flex align-items-center">
|
|
{{-- <img src="assets/img/logo.png" alt=""> --}}
|
|
<span class="d-none d-lg-block">Ellia Cellular</span>
|
|
</a>
|
|
{{-- <i class="bi bi-list toggle-sidebar-btn"></i> --}}
|
|
</div><!-- End Logo -->
|
|
|
|
|
|
<nav class="header-nav ms-auto">
|
|
<ul class="d-flex align-items-center">
|
|
|
|
<li class="nav-item d-block d-lg-none">
|
|
<a class="nav-link nav-icon search-bar-toggle " href="#">
|
|
<i class="bi bi-search"></i>
|
|
</a>
|
|
</li><!-- End Search Icon-->
|
|
|
|
|
|
<li class="nav-item dropdown pe-3">
|
|
|
|
<a class="nav-link nav-profile d-flex align-items-center pe-0" href="#" data-bs-toggle="dropdown">
|
|
<img src="{{ asset('upload/user/' . (Auth::user()->image && Auth::user()->image != '' ? Auth::user()->image : 'Gambar_User_Awal.png')) }}"
|
|
alt="Profile" class="rounded-circle" />
|
|
<span class="d-none d-md-block dropdown-toggle ps-2">
|
|
{{ session('nama') ?? 'Guest' }}
|
|
</span>
|
|
</a><!-- End Profile Image Icon -->
|
|
|
|
|
|
|
|
|
|
<ul class="dropdown-menu dropdown-menu-end dropdown-menu-arrow profile">
|
|
|
|
{{-- <li>
|
|
<a class="dropdown-item d-flex align-items-center" href="users-profile.html">
|
|
<i class="bi bi-person"></i>
|
|
<span>My Profile</span>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<hr class="dropdown-divider">
|
|
</li> --}}
|
|
|
|
<li>
|
|
<form method="POST" action="{{ route('logout') }}">
|
|
@csrf
|
|
<button type="submit" class="dropdown-item d-flex align-items-center">
|
|
<i class="bi bi-box-arrow-right"></i>
|
|
<span>Sign Out</span>
|
|
</button>
|
|
</form>
|
|
</li>
|
|
|
|
|
|
</ul><!-- End Profile Dropdown Items -->
|
|
</li><!-- End Profile Nav -->
|
|
|
|
</ul>
|
|
</nav><!-- End Icons Navigation -->
|
|
|
|
</header><!-- End Header -->
|