-
-
Save yuklia/4d7c101129b1a8dc3deafe6fed19e392 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="nav navbar-nav navbar-right"> | |
<!-- Authentication Links --> | |
@if (Auth::guest()) | |
<li><a href="{{ url('/login') }}">Login</a></li> | |
<li><a href="{{ url('/register') }}">Register</a></li> | |
@else | |
<li class="dropdown"> | |
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> | |
{{ Auth::user()->name }} <span class="caret"></span> | |
</a> | |
<ul class="dropdown-menu" role="menu"> | |
<li><a href="{{ url('/logout') }}"><i class="fa fa-btn fa-sign-out"></i>Logout</a></li> | |
</ul> | |
</li> | |
@endif | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment