HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/liempde.ehbo.today/resources/views/site/partials/header/header.blade.php
<header>
    <div class="grid-row large-row {{!\Auth::check() ? 'guest' : ''}}">

        {{-- Logo --}}

        <figure class="logo">
            <a href="/">
                <img alt="logo" src="/img/svg/logo.svg">
            </a>
        </figure>

        {{-- Navigatie --}}
        @if(\Auth::check())
            <nav>
                <ul>
                    <li @if(\Route::currentRouteName() == 'dashboard.courses') class="active" @endif>
                        <a href="{{ route('dashboard.courses') }}">{{ __('site/dashboard.courses_and_competences.title') }}</a>
                    </li>
                    <li @if(\Route::currentRouteName() == 'dashboard.personal') class="active" @endif>
                        <a href="{{ route('dashboard.personal') }}">{{ __('site/dashboard.personal.title') }}</a>
                    </li>
                </ul>
            </nav>
            <form action="{{ route('site.logout') }}" method="POST">
                {{ csrf_field() }}
                {{ method_field('POST') }}

                <input type="submit" class="logout-button" value="@lang('auth.log_out')">
            </form>
        @endif
    </div>

</header>