Removed space after bracket and added and added a line after block

This commit is contained in:
sanjeev 2022-08-01 12:34:14 +05:30
parent 5014686b01
commit e979f6f2e7
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,7 @@
<li>
<span class="dropdown-toggle">
@if( auth()->guard('customer')->user() && auth()->guard('customer')->user()->image)
@if (auth()->guard('customer')->user() && auth()->guard('customer')->user()->image)
<img class="profile-small-icon" src="{{ auth('customer')->user()->image_url }}" alt="{{ auth('customer')->user()->first_name }}"/>
@else
<i class="icon account-icon"></i>

View File

@ -2,11 +2,12 @@
<div id="account">
<div class="d-inline-block welcome-content dropdown-toggle">
@if( auth()->guard('customer')->user() && auth()->guard('customer')->user()->image)
@if (auth()->guard('customer')->user() && auth()->guard('customer')->user()->image)
<img class= "profile-small-icon" src="{{ auth('customer')->user()->image_url }}" alt="{{ auth('customer')->user()->first_name }}"/>
@else
<i class="material-icons align-vertical-top">perm_identity</i>
@endif
<span class="text-center">
{{ __('velocity::app.header.welcome-message', [
'customer_name' => auth()->guard('customer')->user()