Skip to content

Commit

Permalink
Added home link to welcome page
Browse files Browse the repository at this point in the history
  • Loading branch information
Zak Nesler committed Oct 14, 2016
1 parent 38ba328 commit d0fa3fc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions resources/views/welcome.blade.php
Expand Up @@ -68,8 +68,12 @@
<div class="flex-center position-ref full-height">
@if (Route::has('login'))
<div class="top-right links">
<a href="{{ url('/login') }}">Login</a>
<a href="{{ url('/register') }}">Register</a>
@if (Auth::check())
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ url('/login') }}">Login</a>
<a href="{{ url('/register') }}">Register</a>
@endif
</div>
@endif

Expand Down

0 comments on commit d0fa3fc

Please sign in to comment.