Updated hrefs

This commit is contained in:
frederikpyt
2020-06-17 11:28:48 +02:00
parent 99c2b16752
commit fe9a97656f
9 changed files with 41 additions and 57 deletions
@@ -1,7 +1,13 @@
@section("header")
<header class="row align-items-center" style="background-color: #00788a;">
<img src="{{ URL::asset('/images/logos/Logo-hvid.svg') }}" class="h-100 brand" alt="Syddansk Erhvervsskole">
<a href="" class="btn btn-dark text-white m-0 ml-auto">User: Admin</a>
<a href="" class="btn btn-dark text-white m-0 ml-1 mr-1">Log ud</a>
@auth
<a href="" class="btn btn-dark text-white m-0 ml-auto">User: {{ Auth::user()->name }}</a>
<a href="{{ route('user.logout') }}" class="btn btn-dark text-white m-0 ml-1 mr-1">Log ud</a>
@else
<a href="{{ route('user.login') }}" class="btn btn-dark text-white m-0 ml-auto mr-1">Log ind</a>
@endauth
</header>
@endsection