0% found this document useful (0 votes)
38 views1 page

Authentication Links

This document contains code for authentication links in a navigation menu. It displays a "Login" link for unauthenticated users and a dropdown menu with the logged in user's name and a "Logout" option for authenticated users.

Uploaded by

Matias Joel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views1 page

Authentication Links

This document contains code for authentication links in a navigation menu. It displays a "Login" link for unauthenticated users and a dropdown menu with the logged in user's name and a "Logout" option for authenticated users.

Uploaded by

Matias Joel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

-- Authentication Links -->


@guest
<li class="nav-item">
<a class="nav-link" href="{{ route('login')
}}">{{ __('Login') }}</a>
</li>
@if (Route::has('register'))
<li class="nav-item">
<a class="nav-link" href="{{
route('register') }}">{{ __('Register') }}</a>
</li>
@endif
@else
<li class="nav-item dropdown">
<a id="navbarDropdown" class="nav-link
dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-
haspopup="true" aria-expanded="false" v-pre>
{{ Auth::user()->name }} <span
class="caret"></span>
</a>

<div class="dropdown-menu dropdown-menu-


right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="{{
route('logout') }}" onclick="event.preventDefault();

document.getElementById('logout-form').submit();">
{{ __('Logout') }}
</a>

<form id="logout-form" action="{{


route('logout') }}" method="POST" style="display: none;">
@csrf
</form>
</div>
</li>
@endguest

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy