Change "Login" text to "Log in" (#5536)

As this is used as a verb, like its friend "Register", the verb form should be used.

http://notaverb.com/login
This commit is contained in:
Mark Jaquith 2021-02-15 16:06:24 -05:00 committed by GitHub
parent eaf7289523
commit cbddb27c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
@auth @auth
<a href="{{ url('/home') }}" class="text-sm text-gray-700 underline">Home</a> <a href="{{ url('/home') }}" class="text-sm text-gray-700 underline">Home</a>
@else @else
<a href="{{ route('login') }}" class="text-sm text-gray-700 underline">Login</a> <a href="{{ route('login') }}" class="text-sm text-gray-700 underline">Log in</a>
@if (Route::has('register')) @if (Route::has('register'))
<a href="{{ route('register') }}" class="ml-4 text-sm text-gray-700 underline">Register</a> <a href="{{ route('register') }}" class="ml-4 text-sm text-gray-700 underline">Register</a>