22 lines
625 B
PHP
22 lines
625 B
PHP
<div class="row">
|
|
<div class="col-12 text-right p-2">
|
|
<button type="button" class="btn bg-green-dark light" data-toggle="dropdown">
|
|
<i class="fa fa-2x fa-fw fa-user mr-2"></i>
|
|
@if (App\Repositories\Shop\Customers::getName())
|
|
<span id="username" class="ml-2 badge bg-yellow green-dark">
|
|
{{ App\Repositories\Shop\Customers::getName() }}
|
|
</span>
|
|
@endif
|
|
</button>
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="dLabel">
|
|
<li class="dropdown-item">
|
|
<a href="{{ route('Shop.login') }}" title="Identifiez-vous" rel="nofollow">
|
|
<span>Connexion</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|