mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #5808 from beganovich/v5-2505-change-company-alt-in-cp
(v5) Change company logo alt in the client portal
This commit is contained in:
commit
aae7ffc504
@ -3,7 +3,7 @@
|
||||
<div class="flex items-center h-16 flex-shrink-0 px-4 bg-white border-r justify-center z-10">
|
||||
<a href="{{ route('client.dashboard') }}">
|
||||
<img class="h-10 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}"
|
||||
alt="{{ config('app.name') }}"/>
|
||||
alt="{{ auth('contact')->user()->company->present()->name() }} logo"/>
|
||||
</a>
|
||||
</div>
|
||||
<div class="h-0 flex-1 flex flex-col overflow-y-auto z-0 border-r">
|
||||
|
@ -9,7 +9,7 @@
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-shrink-0 flex items-center px-4">
|
||||
<img class="h-8 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}" alt="{{ config('app.name') }}" />
|
||||
<img class="h-8 w-auto" src="{!! auth('contact')->user()->company->present()->logo($settings) !!}" alt="{{ auth('contact')->user()->company->present()->name() }} logo" />
|
||||
</div>
|
||||
<div class="mt-5 flex-1 h-0 overflow-y-auto">
|
||||
<nav class="flex-1 pb-4 pt-0 bg-white">
|
||||
|
Loading…
Reference in New Issue
Block a user