Skip to content

Commit

Permalink
[5.7] Fix app stub when register route option is set to false (#25582)
Browse files Browse the repository at this point in the history
* Fix app stub when register route option is set to false

* Update app.stub
  • Loading branch information
JeroenBoesten authored and taylorotwell committed Sep 12, 2018
1 parent 94f0c26 commit a396a4c
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -44,7 +44,9 @@
<a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
@if (Route::has('register'))
<a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
@endif
</li>
@else
<li class="nav-item dropdown">
Expand Down

0 comments on commit a396a4c

Please sign in to comment.