Sindbad~EG File Manager

Current Path : /home/zada/public_html/resources/views/header/
Upload File :
Current File : /home/zada/public_html/resources/views/header/header5.blade.php

@php
$topHeaderTextColor = get_setting('top_header_text_color');
$middleHeaderTextColor = get_setting('middle_header_text_color');
@endphp

<div class="top-navbar z-1035 pt-0 mb-1 top-background-color-visibility"
    style="background-color: {{ get_setting('top_header_bg_color')}}">
    <div class="container">
        <div class="row align-items-center">
            <!-- Right side with helpline and gear icon -->
            <div class="col-6 mt-2 ml-auto text-right">
                <ul class="list-inline mb-0 h-100 d-flex justify-content-end align-items-center">
                    <!-- Helpline -->
                    <li class="list-inline-item">
                        <div class="d-flex align-items-center">
                            @if (get_setting('helpline_number'))
                            <div class="ash-color fs-12 mr-n2 top-text-color-visibility" style="color: {{ $topHeaderTextColor }}">
                                <span class="helpline-label">{{ translate('Helpline') }}:</span>
                                <span class="helpline-number-preview">{{ get_setting('helpline_number') }}</span>                           
                            </div>
                            @else
                            <div class="ash-color fs-12 mr-n2 top-text-color-visibility" style="color: {{ $topHeaderTextColor }}">
                                <span class="helpline-label" style="display:none;">{{ translate('Helpline') }}:</span>
                                <span class="helpline-number-preview"></span>
                            </div>
                            @endif
                            <!-- New Links -->
                            @if (Auth::check() && auth()->user()->user_type == 'customer')
                            <!-- Compare -->
                            <div class="d-none d-lg-block ml-5 mr-0">
                                <div class="" id="compare">
                                    @include('frontend.partials.compareText')
                                </div>
                            </div>
                            <!-- Wishlist -->
                            <div class="d-none d-lg-block mr-1 ml-3">
                                <div class="" id="wishlist">
                                    @include('frontend.partials.wishlistText')
                                </div>
                            </div>
                            <!-- Notifications -->
                            <ul class="list-inline mb-0 h-100 d-none d-xl-flex justify-content-end align-items-center">
                                <li class="list-inline-item ml-3 mr-3 pr-3 pl-0 dropdown">
                                    <a class="dropdown-toggle no-arrow fs-12" data-toggle="dropdown"
                                        href="javascript:void(0);" role="button" aria-haspopup="false"
                                        aria-expanded="false" onclick="nonLinkableNotificationRead()" style="color: {{ get_setting('top_header_text_color') }}">
                                        <span class="d-inline-block fs-12">
                                            {{ translate('Notifications') }}
                                            @if (Auth::check() && count($user->unreadNotifications) > 0)
                                            ({{ count($user->unreadNotifications) }})
                                            @endif
                                        </span>
                                    </a>
                                    @auth
                                    <div class="dropdown-menu dropdown-menu-right dropdown-menu-lg py-0 rounded-0">
                                        <div class="p-3 bg-light border-bottom">
                                            <h6 class="mb-0">{{ translate('Notifications') }}</h6>
                                        </div>
                                        <div class="c-scrollbar-light overflow-auto" style="max-height:300px;">
                                            <ul class="list-group list-group-flush">
                                                @forelse($user->unreadNotifications as $notification)
                                                @php
                                                $showNotification = true;
                                                if (
                                                $notification->type ==
                                                'App\Notifications\PreorderNotification' &&
                                                !addon_is_activated('preorder')
                                                ) {
                                                $showNotification = false;
                                                }
                                                @endphp
                                                @if ($showNotification)
                                                @php
                                                $isLinkable = true;
                                                $notificationType = get_notification_type(
                                                $notification->notification_type_id,
                                                'id',
                                                );
                                                $notifyContent = $notificationType->getTranslation(
                                                'default_text',
                                                );
                                                $notificationShowDesign = get_setting(
                                                'notification_show_type',
                                                );
                                                if (
                                                $notification->type ==
                                                'App\Notifications\customNotification' &&
                                                $notification->data['link'] == null
                                                ) {
                                                $isLinkable = false;
                                                }
                                                @endphp
                                                <li class="list-group-item">
                                                    <div class="d-flex">
                                                        @if ($notificationShowDesign != 'only_text')
                                                        <div class="size-35px mr-2">
                                                            @php
                                                            $notifyImageDesign = '';
                                                            if (
                                                            $notificationShowDesign ==
                                                            'design_2'
                                                            ) {
                                                            $notifyImageDesign =
                                                            'rounded-1';
                                                            } elseif (
                                                            $notificationShowDesign ==
                                                            'design_3'
                                                            ) {
                                                            $notifyImageDesign =
                                                            'rounded-circle';
                                                            }
                                                            @endphp
                                                            <img src="{{ uploaded_asset($notificationType->image) }}"
                                                                onerror="this.onerror=null;this.src='{{ static_asset('assets/img/notification.png') }}';"
                                                                class="img-fit h-100 {{ $notifyImageDesign }}">
                                                        </div>
                                                        @endif
                                                        <div>
                                                            @if ($notification->type == 'App\Notifications\OrderNotification')
                                                            @php
                                                            $orderCode =
                                                            $notification->data[
                                                            'order_code'
                                                            ];
                                                            $route = route(
                                                            'purchase_history.details',
                                                            encrypt(
                                                            $notification->data[
                                                            'order_id'
                                                            ],
                                                            ),
                                                            );
                                                            $orderCode =
                                                            "<span class='text-blue'>" .
                                                                $orderCode .
                                                                '</span>';
                                                            $notifyContent = str_replace(
                                                            '[[order_code]]',
                                                            $orderCode,
                                                            $notifyContent,
                                                            );
                                                            @endphp
                                                            @elseif($notification->type == 'App\Notifications\PreorderNotification')
                                                            @php
                                                            $orderCode =
                                                            $notification->data[
                                                            'order_code'
                                                            ];
                                                            $route = route(
                                                            'preorder.order_details',
                                                            encrypt(
                                                            $notification->data[
                                                            'preorder_id'
                                                            ],
                                                            ),
                                                            );
                                                            $orderCode =
                                                            "<span class='text-blue'>" .
                                                                $orderCode .
                                                                '</span>';
                                                            $notifyContent = str_replace(
                                                            '[[order_code]]',
                                                            $orderCode,
                                                            $notifyContent,
                                                            );
                                                            @endphp
                                                            @endif

                                                            @if ($isLinkable = true)
                                                            <a
                                                                href="{{ route('notification.read-and-redirect', encrypt($notification->id)) }}">
                                                                @endif
                                                                <span
                                                                    class="fs-12 text-dark text-truncate-2">{!! $notifyContent !!}</span>
                                                                @if ($isLinkable = true)
                                                            </a>
                                                            @endif
                                                        </div>
                                                    </div>
                                                </li>
                                                @endif
                                                @empty
                                                <li class="list-group-item">
                                                    <div class="py-4 text-center fs-16">
                                                        {{ translate('No notification found') }}
                                                    </div>
                                                </li>
                                                @endforelse
                                            </ul>
                                        </div>
                                        <div class="text-center border-top">
                                            <a href="{{ route('customer.all-notifications') }}"
                                                class="text-secondary fs-12 d-block py-2">
                                                {{ translate('View All Notifications') }}
                                            </a>
                                        </div>
                                    </div>
                                    @endauth
                                </li>
                            </ul>
                            @endif
                            <!-- Gear Icon Dropdown Toggle -->
                            <div class="dropdown ml-4 mb-1 z-1045 py-1">
                                <button class="btn btn-link p-0 gear-toggle" type="button" data-toggle="dropdown"
                                    aria-expanded="false">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="11.5" height="11.996"
                                        viewBox="0 0 11.5 11.996" class="top-text-color-visibility" style="color: {{$topHeaderTextColor}};">
                                        <path id="_70bbf603dc104e7af369a36baeef0eee"
                                            data-name="70bbf603dc104e7af369a36baeef0eee"
                                            d="M2.267,6.153A5.986,5.986,0,0,1,3.529,3.98a.355.355,0,0,1,.382-.1l1.359.484a.708.708,0,0,0,.936-.538l.259-1.416a.354.354,0,0,1,.275-.282,6.1,6.1,0,0,1,2.519,0,.354.354,0,0,1,.275.282l.26,1.416a.71.71,0,0,0,.936.538l1.359-.484a.355.355,0,0,1,.382.1,5.987,5.987,0,0,1,1.262,2.173.352.352,0,0,1-.108.378l-1.1.932a.7.7,0,0,0,0,1.076l1.1.932a.352.352,0,0,1,.108.378,5.986,5.986,0,0,1-1.262,2.173.355.355,0,0,1-.382.1l-1.359-.484a.707.707,0,0,0-.936.538l-.26,1.416a.354.354,0,0,1-.275.282,6.1,6.1,0,0,1-2.519,0,.354.354,0,0,1-.275-.282l-.259-1.415a.71.71,0,0,0-.936-.538l-1.36.484a.355.355,0,0,1-.382-.1A5.985,5.985,0,0,1,2.267,9.847a.352.352,0,0,1,.108-.378l1.1-.932a.7.7,0,0,0,0-1.076l-1.1-.932A.352.352,0,0,1,2.267,6.153ZM6.25,8A1.75,1.75,0,1,0,8,6.25,1.75,1.75,0,0,0,6.25,8Z"
                                            transform="translate(-2.25 -2.002)" fill="currentColor" opacity="0.7" />
                                    </svg>
                                </button>





                                <!-- Dropdown Menu -->
                                <div class="dropdown-menu dropdown-menu-right py-0" style="min-width: 200px;">
                                    <!-- Language Switcher -->
                                    @if (get_setting('show_language_switcher') == 'on')
                                    <div class="dropdown-submenu px-2 py-2 mt-1 ml-1 border-bottom border-soft-light hover-bg-light"
                                        style="min-height: 40px;">
                                        <div class="form-control form-control-sm border-0 bg-transparent p-0 w-100 cursor-pointer hover-text-primary h-100 d-flex align-items-center justify-content-between"
                                            onclick="toggleChildDropdown(this, event)">
                                            <span>{{ $system_language->name }}</span>
                                            <i class="la la-angle-right"></i>
                                        </div>

                                        <!-- Language Child Dropdown -->
                                        <div class="dropdown-menu dropdown-menu-right py-0 header-drop child-dropdown"
                                            style="min-width: 200px; left: 100%; top: 1px!important; margin-top: -1px;">
                                            @foreach (get_all_active_language() as $language)
                                            <div class="px-2 py-1 border-bottom border-soft-light hover-bg-light">
                                                <a href="javascript:void(0)" class="d-block text-dark"
                                                    data-flag="{{ $language->code }}"
                                                    onclick="changeLanguage('{{ $language->code }}')">
                                                    <img src="{{ static_asset('assets/img/placeholder.jpg') }}"
                                                        data-src="{{ static_asset('assets/img/flags/' . $language->code . '.png') }}"
                                                        class="mr-1 lazyload" alt="{{ $language->name }}" height="11">
                                                    {{ $language->name }}
                                                </a>
                                            </div>
                                            @endforeach
                                        </div>
                                    </div>
                                    @endif



                                    <!-- Currency Switcher -->
                                    @if (get_setting('show_currency_switcher') == 'on')
                                    @php
                                    $system_currency = get_system_currency();
                                    @endphp
                                    <div class="dropdown-submenu px-2 py-2 mt-1 ml-1 border-bottom border-soft-light hover-bg-light"
                                        style="min-height: 40px;">
                                        <div class="form-control form-control-sm border-0 bg-transparent p-0 w-100 cursor-pointer hover-text-primary h-100 d-flex align-items-center justify-content-between"
                                            onclick="toggleChildDropdown(this, event)">
                                            <span>{{ $system_currency->name ?? ''}}
                                                ({{ $system_currency->symbol ?? ''}})</span>
                                            <i class="la la-angle-right"></i>
                                        </div>

                                        <!-- Currency Child Dropdown -->
                                        <div class="dropdown-menu dropdown-menu-right py-0 header-drop child-dropdown"
                                            style="min-width: 200px; left: 100%; top: 1px!important; margin-top: -1px;">
                                            @foreach (get_all_active_currency() as $currency)
                                            <div class="px-2 py-1 border-bottom border-soft-light hover-bg-light">
                                                <a href="javascript:void(0)" class="d-block text-dark"
                                                    data-currency="{{ $currency->code }}"
                                                    onclick="changeCurrency('{{ $currency->code }}')">
                                                    {{ $currency->name }} ({{ $currency->symbol }})
                                                </a>
                                            </div>
                                            @endforeach
                                        </div>
                                    </div>
                                    @endif


                                    <!-- Become a Seller Links -->
                                    @if (get_setting('vendor_system_activation') == 1)
                                    <div>
                                        <a href="{{ route(get_setting('seller_registration_verify') === '1' ? 'shop-reg.verification' : 'shops.create') }}"
                                            class="dropdown-item fs-13 py-2 px-3 hover-bg-light hover-text-primary border-bottom border-soft-light d-flex align-items-center"
                                            style="min-height: 40px;">
                                            {{ translate('Become a Seller') }}
                                        </a>
                                        <a href="{{ route('seller.login') }}"
                                            class="dropdown-item fs-13 py-2 px-3 hover-bg-light hover-text-primary d-flex align-items-center"
                                            style="min-height: 40px;">
                                            {{ translate('Seller Login') }}
                                        </a>
                                    </div>
                                    @endif
                                </div>





                            </div>
                        </div>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</div>


<header class="@if (get_setting('header_stikcy') == 'on') sticky-top @endif z-1020 middle-background-color-visibility stikcy-header-visibility pb-2 pt-0 mt-n1" style="background-color: {{ get_setting('middle_header_bg_color') }}">
    <!-- Search Bar -->
    <div class="position-relative logo-bar-area border-md-nonea z-1025">
        <div class="container">
            <div class="d-flex align-items-center position-relative">
                <!-- top menu sidebar button -->
                <button type="button" class="btn d-lg-none mr-3 mr-sm-4 p-0 active" data-toggle="class-toggle"
                    data-target=".aiz-top-menu-sidebar">
                    <svg id="Component_43_1" data-name="Component 43 – 1" xmlns="http://www.w3.org/2000/svg" width="16"
                        height="16" viewBox="0 0 16 16">
                        <rect id="Rectangle_19062" data-name="Rectangle 19062" width="16" height="2"
                            transform="translate(0 7)" fill="#919199" />
                        <rect id="Rectangle_19063" data-name="Rectangle 19063" width="16" height="2" fill="#919199" />
                        <rect id="Rectangle_19064" data-name="Rectangle 19064" width="16" height="2"
                            transform="translate(0 14)" fill="#919199" />
                    </svg>

                </button>

                <div class="col-auto pl-0 pr-0 d-flex align-items-center">
                    <!-- Header Logo -->
                    <a class="d-block py-20px mr-2" href="{{ route('home') }}">
                        @php
                        $header_logo = get_setting('header_logo');
                        @endphp
                        @if ($header_logo != null)
                        <img id="header-logo-preview" src="{{ uploaded_asset($header_logo) }}" alt="{{ env('APP_NAME') }}"
                            class="mw-100 h-30px h-md-40px" height="40">
                        @else
                        <img id="header-logo-preview" src="{{ static_asset('assets/img/logo.png') }}" alt="{{ env('APP_NAME') }}"
                            class="mw-100 h-30px h-md-40px" height="40">
                        @endif
                    </a>
                    <!-- Down Icon -->
                    
                        <div class="d-xl-flex align-items-center ml-1 category-menu-toggle "
                            id="category-menu-bar" style="cursor: pointer;">
                            <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"
                                class="menu-icon">
                                <path d="M12,22c-4.714,0-7.071,0-8.536-1.465S2,16.714,2,12,2,4.929,3.464,3.464,
                        7.286,2,12,2s7.071,0,8.535,1.464S22,7.286,22,12s0,7.071-1.465,8.535S16.714,22,12,22ZM8.47,
                        7.97a.75.75,0,0,0,0,1.061l3,3a.75.75,0,0,0,1.061,0l3-3A.75.75,0,0,0,14.47,7.97L12,10.439,
                        9.53,7.97A.75.75,0,0,0,8.47,7.97Zm0,4a.75.75,0,0,0,0,1.061l3,3a.75.75,0,0,0,1.061,0l3-3A.75.75,
                        0,0,0,14.47,11.97L12,14.439,9.53,11.97A.75.75,0,0,0,8.47,11.97Z" transform="translate(-2 -2)"
                                    fill="#fff" fill-rule="evenodd" opacity="0.7" />
                            </svg>
                        </div>
                </div>
                <!-- Categoty Menus -->
                <div class="hover-category-menu position-absolute z-3 mt-3 d-none custom-category-position w-100"
                    id="click-category-menu">

                    <div class="container">
                        <div class="d-flex position-relative">
                            <div class="position-static">
                                @include('frontend.' . get_setting('homepage_select') . '.partials.category_menu')
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Header Menus -->

                <div class="ml-xl-4 position-relative header-menus-container d-none d-lg-block">
                    <div class="d-flex align-items-center justify-content-center justify-content-xl-start h-100">
                        <ul class="list-inline mb-0 pl-0 hor-swipe c-scrollbar-light">
                            @if (get_setting('header_menu_labels') != null)
                            @php
                            $menuLabels = json_decode(get_setting('header_menu_labels'), true);
                            $menuLinks = json_decode(get_setting('header_menu_links'), true);
                            $totalMenus = count($menuLabels);
                            @endphp

                            @foreach ($menuLabels as $key => $value)
                                @if ($loop->index < 5)
                                    <li class="list-inline-item mr-0 animate-underline-white">
                                    <a href="{{ $menuLinks[$key] }}" class="fs-13 px-3 py-3 d-inline-block middle-text-color-visibility fw-700 header_menu_links hov-bg-black-10
                                            @if (url()->current() == $menuLinks[$key]) active @endif" style="color: {{ $middleHeaderTextColor }}">
                                        {{ translate($value) }}
                                    </a>
                                    </li>
                                @endif

                                @if ($loop->index == 5 && $totalMenus > 5)
                                <li class="list-inline-item mr-0 dropdown position-static">
                                    <a href="#"
                                        class="fs-13 px-3 py-3 d-inline-block fw-700 header_menu_links hov-bg-black-10 dropdown-toggle middle-text-color-visibility"
                                        data-toggle="dropdown" aria-expanded="false" style="color: {{ $middleHeaderTextColor }}">
                                        {{ translate('More...') }}
                                    </a>
                                    <div class="dropdown-menu py-0 header-drop">
                                        @for ($i = 5; $i < $totalMenus; $i++)
                                            <a href="{{ $menuLinks[$i] }}" class="dropdown-item fs-13 py-2 px-3 violet-dropdown text-dark 
                                                       @if (url()->current() == $menuLinks[$i]) active @endif
                                                       {{ $i < $totalMenus - 1 ? 'border-bottom border-soft-light' : '' }}">
                                            {{ translate($menuLabels[$i]) }}
                                            </a>
                                            @endfor
                                    </div>

                                </li>
                                @endif
                                @endforeach
                                @endif
                        </ul>
                    </div>
                </div>


                <!-- Search Icon for desktop (hidden on mobile) -->
                <div class="d-none d-xl-block ml-2">
                    <a class="p-2 d-flex align-items-center justify-content-center text-reset bg-white rounded-2 shadow-sm position-relative search-icon-desktop"
                        href="javascript:void(0);" style="width: 40px; height: 40px;">
                        <svg id="Group_723" data-name="Group 723" xmlns="http://www.w3.org/2000/svg" width="20.001"
                            height="20" viewBox="0 0 20.001 20">
                            <path id="Path_3090" data-name="Path 3090"
                                d="M9.847,17.839a7.993,7.993,0,1,1,7.993-7.993A8,8,0,0,1,9.847,17.839Zm0-14.387a6.394,6.394,0,1,0,6.394,6.394A6.4,6.4,0,0,0,9.847,3.453Z"
                                transform="translate(-1.854 -1.854)" fill="#3f0052" />
                            <path id="Path_3091" data-name="Path 3091"
                                d="M24.4,25.2a.8.8,0,0,1-.565-.234l-6.15-6.15a.8.8,0,0,1,1.13-1.13l6.15,6.15A.8.8,0,0,1,24.4,25.2Z"
                                transform="translate(-5.2 -5.2)" fill="#3f0052" />
                        </svg>
                    </a>
                </div>

                <!-- Search Icon for small device -->
                <div class="d-lg-none ml-auto mr-0 mt-2 search-icon-mobile-hide">
                    <a class="p-2 d-block text-white search-icon-mobile" href="javascript:void(0);">
                        <i class="las la-search la-flip-horizontal la-2x"></i>
                    </a>
                </div>

                <!-- Search field for desktop -->
                <div class="desktop-search-container d-none align-items-center position-absolute top-0 h-100"
                    style="z-index: 1030; width: 0; right: 405px;">

                    <div class="container h-100">
                        <div class="d-flex align-items-center h-100 justify-content-end">
                            <div
                                class="position-relative flex-grow-1 h-100 d-flex align-items-center justify-content-end">
                                <form action="{{ route('search') }}" method="GET" class="stop-propagation w-100">
                                    <div class="d-flex position-relative align-items-center">
                                        <div class="search-input-box flex-grow-1">
                                            <input type="text"
                                                class="border border-soft-light form-control fs-14 hov-animate-outline rounded-2"
                                                id="search" name="keyword" @isset($query) value="{{ $query }}"
                                                @endisset placeholder="{{ translate('I am shopping for...') }}"
                                                autocomplete="off">

                                            <button class="btn px-2 search-close-desktop position-absolute"
                                                type="button"
                                                style="right: 30px; top: 50%; transform: translateY(-50%);">
                                                <i class="la la-times"></i>
                                            </button>

                                            <svg id="Group_723" data-name="Group 723" xmlns="http://www.w3.org/2000/svg"
                                                width="20.001" height="20" viewBox="0 0 20.001 20"
                                                class="position-absolute"
                                                style="right: 10px; top: 50%; transform: translateY(-50%);">
                                                <path id="Path_3090" data-name="Path 3090"
                                                    d="M9.847,17.839a7.993,7.993,0,1,1,7.993-7.993A8,8,0,0,1,9.847,17.839Zm0-14.387a6.394,6.394,0,1,0,6.394,6.394A6.4,6.4,0,0,0,9.847,3.453Z"
                                                    transform="translate(-1.854 -1.854)" fill="#b5b5bf" />
                                                <path id="Path_3091" data-name="Path 3091"
                                                    d="M24.4,25.2a.8.8,0,0,1-.565-.234l-6.15-6.15a.8.8,0,0,1,1.13-1.13l6.15,6.15A.8.8,0,0,1,24.4,25.2Z"
                                                    transform="translate(-5.2 -5.2)" fill="#b5b5bf" />
                                            </svg>
                                        </div>
                                    </div>
                                </form>

                                <div class="typed-search-box stop-propagation document-click-d-none d-none bg-white rounded shadow-lg position-absolute left-0 top-100 w-100" 
                                    style="min-height: 200px">
                                    <div class="search-preloader absolute-top-center">
                                        <div class="dot-loader">
                                            <div></div>
                                            <div></div>
                                            <div></div>
                                        </div>
                                    </div>
                                    <div class="search-nothing d-none p-3 text-center fs-16">

                                    </div>
                                    <div id="search-content" class="text-left">

                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <!-- Search box -->
                <div class="d-none d-lg-none ml-3 mr-0">
                    <div class="nav-search-box">
                        <a href="#" class="nav-box-link">
                            <i class="la la-search la-flip-horizontal d-inline-block nav-box-icon"></i>
                        </a>
                    </div>
                </div>




                <!-- Cart + User Section Combined -->
                <div class="d-none d-xl-flex align-items-center ml-auto">

                    <!-- Cart -->
                    <div class="align-self-stretch has-transition mr-2" data-hover="dropdown">
                        <div class="nav-cart-box dropdown h-100" id="cart_items" style="width: max-content;">
                            @include('frontend.partials.cart.cart')
                        </div>
                    </div>

                    <!-- User section -->
                    <div>
                        @auth
                        <span
                            class="d-flex align-items-center nav-user-info py-20px @if (isAdmin()) ml-3 @else ml-2 @endif"
                            id="nav-user-info">
                            <!-- Image -->
                            <span
                                class="size-40px rounded-circle overflow-hidden border border-transparent nav-user-img">
                                @if ($user->avatar_original != null)
                                <img src="{{ uploaded_asset(Auth::user()->avatar_original) }}" class="img-fit h-100" alt="{{ translate('avatar') }}"
                                    onerror="this.onerror=null;this.src='{{ static_asset('assets/img/avatar-place.png') }}';">
                                @else
                                <img src="{{ static_asset('assets/img/avatar-place.png') }}" class="image"
                                    alt="{{ translate('avatar') }}"
                                    onerror="this.onerror=null;this.src='{{ static_asset('assets/img/avatar-place.png') }}';">
                                @endif
                            </span>
                            <!-- Name -->
                            <h4 class="h5 fs-14 fw-700 ml-2 middle-text-color-visibility mb-0" style="color: {{ $middleHeaderTextColor }}">{{ $user->name }}</h4>
                        </span>
                        @else
                        <!-- Login & Registration -->
                        <span class="d-flex align-items-center nav-user-info ml-2">
                            <!-- Image -->
                            <span
                                class="size-40px rounded-circle overflow-hidden border d-flex align-items-center justify-content-center nav-user-img">
                                <svg xmlns="http://www.w3.org/2000/svg" width="19.902" height="20.012"
                                    viewBox="0 0 19.902 20.012">
                                    <path id="fe2df171891038b33e9624c27e96e367"
                                        d="M15.71,12.71a6,6,0,1,0-7.42,0,10,10,0,0,0-6.22,8.18,1.006,1.006,0,1,0,2,.22,8,8,0,0,1,15.9,0,1,1,0,0,0,1,.89h.11a1,1,0,0,0,.88-1.1,10,10,0,0,0-6.25-8.19ZM12,12a4,4,0,1,1,4-4A4,4,0,0,1,12,12Z"
                                        transform="translate(-2.064 -1.995)" fill="#91919b" />
                                </svg>
                            </span>
                            <a href="{{ route('user.login') }}" style="color: {{ $middleHeaderTextColor }}"
                                class="middle-text-color-visibility opacity-60 hov-opacity-100 hov-text-primary fs-12 d-inline-block border-right border-soft-light border-width-2 pr-2 ml-2">
                                {{ translate('Login') }}
                            </a>
                            <a href="{{ route('user.registration') }}"
                                style="color: {{ $middleHeaderTextColor }}" class="middle-text-color-visibility opacity-60 hov-opacity-100 hov-text-primary fs-12 d-inline-block py-2 pl-2">
                                {{ translate('Registration') }}
                            </a>
                        </span>
                        @endauth
                    </div>

                </div>

            </div>
        </div>

        <!-- Loged in user Menus -->
        <div class="hover-user-top-menu position-absolute top-100 left-0 right-0 z-3">
            <div class="container">
                <div class="position-static float-right">
                    <div class="aiz-user-top-menu bg-white rounded-0 border-top shadow-sm" style="width:220px;">
                        <ul class="list-unstyled no-scrollbar mb-0 text-left">
                            @if (isAdmin())
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('admin.dashboard') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
                                        <path id="Path_2916" data-name="Path 2916"
                                            d="M15.3,5.4,9.561.481A2,2,0,0,0,8.26,0H7.74a2,2,0,0,0-1.3.481L.7,5.4A2,2,0,0,0,0,6.92V14a2,2,0,0,0,2,2H14a2,2,0,0,0,2-2V6.92A2,2,0,0,0,15.3,5.4M10,15H6V9A1,1,0,0,1,7,8H9a1,1,0,0,1,1,1Zm5-1a1,1,0,0,1-1,1H11V9A2,2,0,0,0,9,7H7A2,2,0,0,0,5,9v6H2a1,1,0,0,1-1-1V6.92a1,1,0,0,1,.349-.76l5.74-4.92A1,1,0,0,1,7.74,1h.52a1,1,0,0,1,.651.24l5.74,4.92A1,1,0,0,1,15,6.92Z"
                                            fill="#b5b5c0" />
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Dashboard') }}</span>
                                </a>
                            </li>
                            @else
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('dashboard') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
                                        <path id="Path_2916" data-name="Path 2916"
                                            d="M15.3,5.4,9.561.481A2,2,0,0,0,8.26,0H7.74a2,2,0,0,0-1.3.481L.7,5.4A2,2,0,0,0,0,6.92V14a2,2,0,0,0,2,2H14a2,2,0,0,0,2-2V6.92A2,2,0,0,0,15.3,5.4M10,15H6V9A1,1,0,0,1,7,8H9a1,1,0,0,1,1,1Zm5-1a1,1,0,0,1-1,1H11V9A2,2,0,0,0,9,7H7A2,2,0,0,0,5,9v6H2a1,1,0,0,1-1-1V6.92a1,1,0,0,1,.349-.76l5.74-4.92A1,1,0,0,1,7.74,1h.52a1,1,0,0,1,.651.24l5.74,4.92A1,1,0,0,1,15,6.92Z"
                                            fill="#b5b5c0" />
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Dashboard') }}</span>
                                </a>
                            </li>
                            @endif

                            @if (isCustomer())
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('purchase_history.index') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
                                        <g id="Group_25261" data-name="Group 25261"
                                            transform="translate(-27.466 -542.963)">
                                            <path id="Path_2953" data-name="Path 2953"
                                                d="M14.5,5.963h-4a1.5,1.5,0,0,0,0,3h4a1.5,1.5,0,0,0,0-3m0,2h-4a.5.5,0,0,1,0-1h4a.5.5,0,0,1,0,1"
                                                transform="translate(22.966 537)" fill="#b5b5bf" />
                                            <path id="Path_2954" data-name="Path 2954"
                                                d="M12.991,8.963a.5.5,0,0,1,0-1H13.5a2.5,2.5,0,0,1,2.5,2.5v10a2.5,2.5,0,0,1-2.5,2.5H2.5a2.5,2.5,0,0,1-2.5-2.5v-10a2.5,2.5,0,0,1,2.5-2.5h.509a.5.5,0,0,1,0,1H2.5a1.5,1.5,0,0,0-1.5,1.5v10a1.5,1.5,0,0,0,1.5,1.5h11a1.5,1.5,0,0,0,1.5-1.5v-10a1.5,1.5,0,0,0-1.5-1.5Z"
                                                transform="translate(27.466 536)" fill="#b5b5bf" />
                                            <path id="Path_2955" data-name="Path 2955"
                                                d="M7.5,15.963h1a.5.5,0,0,1,.5.5v1a.5.5,0,0,1-.5.5h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5"
                                                transform="translate(23.966 532)" fill="#b5b5bf" />
                                            <path id="Path_2956" data-name="Path 2956"
                                                d="M7.5,21.963h1a.5.5,0,0,1,.5.5v1a.5.5,0,0,1-.5.5h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5"
                                                transform="translate(23.966 529)" fill="#b5b5bf" />
                                            <path id="Path_2957" data-name="Path 2957"
                                                d="M7.5,27.963h1a.5.5,0,0,1,.5.5v1a.5.5,0,0,1-.5.5h-1a.5.5,0,0,1-.5-.5v-1a.5.5,0,0,1,.5-.5"
                                                transform="translate(23.966 526)" fill="#b5b5bf" />
                                            <path id="Path_2958" data-name="Path 2958"
                                                d="M13.5,16.963h5a.5.5,0,0,1,0,1h-5a.5.5,0,0,1,0-1"
                                                transform="translate(20.966 531.5)" fill="#b5b5bf" />
                                            <path id="Path_2959" data-name="Path 2959"
                                                d="M13.5,22.963h5a.5.5,0,0,1,0,1h-5a.5.5,0,0,1,0-1"
                                                transform="translate(20.966 528.5)" fill="#b5b5bf" />
                                            <path id="Path_2960" data-name="Path 2960"
                                                d="M13.5,28.963h5a.5.5,0,0,1,0,1h-5a.5.5,0,0,1,0-1"
                                                transform="translate(20.966 525.5)" fill="#b5b5bf" />
                                        </g>
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Purchase History') }}</span>
                                </a>
                            </li>

                            @if (addon_is_activated('preorder'))
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('preorder.order_list') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.002"
                                        viewBox="0 0 16 16.002">
                                        <path id="Union_63" data-name="Union 63"
                                            d="M14072,894a8,8,0,1,1,8,8A8.011,8.011,0,0,1,14072,894Zm1,0a7,7,0,1,0,7-7A7.007,7.007,0,0,0,14073,894Zm10.652,3.674-3.2-2.781a1,1,0,0,1-.953-1.756V889.5a.5.5,0,1,1,1,0v3.634a1,1,0,0,1,.5.863c0,.015,0,.029,0,.044l3.311,2.876a.5.5,0,0,1,.05.7.5.5,0,0,1-.708.049Z"
                                            transform="translate(-14072 -885.998)" fill="#b5b5bf" />
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Preorder List') }}</span>
                                </a>
                            </li>
                            @endif

                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('digital_purchase_history.index') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16.001" height="16"
                                        viewBox="0 0 16.001 16">
                                        <g id="Group_25262" data-name="Group 25262"
                                            transform="translate(-1388.154 -562.604)">
                                            <path id="Path_2963" data-name="Path 2963"
                                                d="M77.864,98.69V92.1a.5.5,0,1,0-1,0V98.69l-1.437-1.437a.5.5,0,0,0-.707.707l1.851,1.852a1,1,0,0,0,.707.293h.172a1,1,0,0,0,.707-.293l1.851-1.852a.5.5,0,0,0-.7-.713Z"
                                                transform="translate(1318.79 478.5)" fill="#b5b5bf" />
                                            <path id="Path_2964" data-name="Path 2964"
                                                d="M67.155,88.6a3,3,0,0,1-.474-5.963q-.009-.089-.015-.179a5.5,5.5,0,0,1,10.977-.718,3.5,3.5,0,0,1-.989,6.859h-1.5a.5.5,0,0,1,0-1l1.5,0a2.5,2.5,0,0,0,.417-4.967.5.5,0,0,1-.417-.5,4.5,4.5,0,1,0-8.908.866.512.512,0,0,1,.009.121.5.5,0,0,1-.52.479,2,2,0,1,0-.162,4l.081,0h2a.5.5,0,0,1,0,1Z"
                                                transform="translate(1324 486)" fill="#b5b5bf" />
                                        </g>
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Downloads') }}</span>
                                </a>
                            </li>
                            @if (get_setting('conversation_system') == 1)
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('conversations.index') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
                                        <g id="Group_25263" data-name="Group 25263"
                                            transform="translate(1053.151 256.688)">
                                            <path id="Path_3012" data-name="Path 3012"
                                                d="M134.849,88.312h-8a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2v3l2.4-3h5.6a2,2,0,0,0,2-2v-5a2,2,0,0,0-2-2m1,7a1,1,0,0,1-1,1h-8a1,1,0,0,1-1-1v-5a1,1,0,0,1,1-1h8a1,1,0,0,1,1,1Z"
                                                transform="translate(-1178 -341)" fill="#b5b5bf" />
                                            <path id="Path_3013" data-name="Path 3013"
                                                d="M134.849,81.312h8a1,1,0,0,1,1,1v5a1,1,0,0,1-1,1h-.5a.5.5,0,0,0,0,1h.5a2,2,0,0,0,2-2v-5a2,2,0,0,0-2-2h-8a2,2,0,0,0-2,2v.5a.5.5,0,0,0,1,0v-.5a1,1,0,0,1,1-1"
                                                transform="translate(-1182 -337)" fill="#b5b5bf" />
                                            <path id="Path_3014" data-name="Path 3014"
                                                d="M131.349,93.312h5a.5.5,0,0,1,0,1h-5a.5.5,0,0,1,0-1"
                                                transform="translate(-1181 -343.5)" fill="#b5b5bf" />
                                            <path id="Path_3015" data-name="Path 3015"
                                                d="M131.349,99.312h5a.5.5,0,1,1,0,1h-5a.5.5,0,1,1,0-1"
                                                transform="translate(-1181 -346.5)" fill="#b5b5bf" />
                                        </g>
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Conversations') }}</span>
                                </a>
                            </li>
                            @endif

                            @if (get_setting('wallet_system') == 1)
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('wallet.index') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
                                        width="16" height="16" viewBox="0 0 16 16">
                                        <defs>
                                            <clipPath id="clip-path1">
                                                <rect id="Rectangle_1386" data-name="Rectangle 1386" width="16"
                                                    height="16" fill="#b5b5bf" />
                                            </clipPath>
                                        </defs>
                                        <g id="Group_8102" data-name="Group 8102" clip-path="url(#clip-path1)">
                                            <path id="Path_2936" data-name="Path 2936"
                                                d="M13.5,4H13V2.5A2.5,2.5,0,0,0,10.5,0h-8A2.5,2.5,0,0,0,0,2.5v11A2.5,2.5,0,0,0,2.5,16h11A2.5,2.5,0,0,0,16,13.5v-7A2.5,2.5,0,0,0,13.5,4M2.5,1h8A1.5,1.5,0,0,1,12,2.5V4H2.5a1.5,1.5,0,0,1,0-3M15,11H10a1,1,0,0,1,0-2h5Zm0-3H10a2,2,0,0,0,0,4h5v1.5A1.5,1.5,0,0,1,13.5,15H2.5A1.5,1.5,0,0,1,1,13.5v-9A2.5,2.5,0,0,0,2.5,5h11A1.5,1.5,0,0,1,15,6.5Z"
                                                fill="#b5b5bf" />
                                        </g>
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('My Wallet') }}</span>
                                </a>
                            </li>
                            @endif
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('support_ticket.index') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16.001"
                                        viewBox="0 0 16 16.001">
                                        <g id="Group_25259" data-name="Group 25259" transform="translate(-316 -1066)">
                                            <path id="Subtraction_184" data-name="Subtraction 184"
                                                d="M16427.109,902H16420a8.015,8.015,0,1,1,8-8,8.278,8.278,0,0,1-1.422,4.535l1.244,2.132a.81.81,0,0,1,0,.891A.791.791,0,0,1,16427.109,902ZM16420,887a7,7,0,1,0,0,14h6.283c.275,0,.414,0,.549-.111s-.209-.574-.34-.748l0,0-.018-.022-1.064-1.6A6.829,6.829,0,0,0,16427,894a6.964,6.964,0,0,0-7-7Z"
                                                transform="translate(-16096 180)" fill="#b5b5bf" />
                                            <path id="Union_12" data-name="Union 12"
                                                d="M16414,895a1,1,0,1,1,1,1A1,1,0,0,1,16414,895Zm.5-2.5V891h.5a2,2,0,1,0-2-2h-1a3,3,0,1,1,3.5,2.958v.54a.5.5,0,1,1-1,0Zm-2.5-3.5h1a.5.5,0,1,1-1,0Z"
                                                transform="translate(-16090.998 183.001)" fill="#b5b5bf" />
                                        </g>
                                    </svg>
                                    <span
                                        class="user-top-menu-name has-transition ml-3">{{ translate('Support Ticket') }}</span>
                                </a>
                            </li>
                            @endif
                            <li class="user-top-nav-element border border-top-0" data-id="1">
                                <a href="{{ route('logout') }}"
                                    class="text-truncate text-dark px-4 fs-14 d-flex align-items-center hov-column-gap-1">
                                    <svg xmlns="http://www.w3.org/2000/svg" width="16" height="15.999"
                                        viewBox="0 0 16 15.999">
                                        <g id="Group_25503" data-name="Group 25503" transform="translate(-24.002 -377)">
                                            <g id="Group_25265" data-name="Group 25265"
                                                transform="translate(-216.534 -160)">
                                                <path id="Subtraction_192" data-name="Subtraction 192"
                                                    d="M12052.535,2920a8,8,0,0,1-4.569-14.567l.721.72a7,7,0,1,0,7.7,0l.721-.72a8,8,0,0,1-4.567,14.567Z"
                                                    transform="translate(-11803.999 -2367)" fill="#d43533" />
                                            </g>
                                            <rect id="Rectangle_19022" data-name="Rectangle 19022" width="1" height="8"
                                                rx="0.5" transform="translate(31.5 377)" fill="#d43533" />
                                        </g>
                                    </svg>
                                    <span
                                        class="user-top-menu-name text-primary has-transition ml-3">{{ translate('Logout') }}</span>
                                </a>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>

    </div>
</header>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists (>^ω^<)看过哭02teddd(>^ω^<)看过哭02teddd