Issue #1559 fixed
This commit is contained in:
parent
f4a562da5c
commit
08e87ccf8d
|
|
@ -226,7 +226,7 @@ return [
|
||||||
'password' => 'Password',
|
'password' => 'Password',
|
||||||
'confirm-password' => 'Confirm Password',
|
'confirm-password' => 'Confirm Password',
|
||||||
'back-link-title' => 'Back to Sign In',
|
'back-link-title' => 'Back to Sign In',
|
||||||
'submit-btn-title' => 'Email Password Reset Link'
|
'submit-btn-title' => 'Send Password Reset Email'
|
||||||
],
|
],
|
||||||
|
|
||||||
'reset-password' => [
|
'reset-password' => [
|
||||||
|
|
|
||||||
|
|
@ -155,7 +155,7 @@ return [
|
||||||
'forgot-password' => [
|
'forgot-password' => [
|
||||||
'title' => 'Recover Password',
|
'title' => 'Recover Password',
|
||||||
'email' => 'Email',
|
'email' => 'Email',
|
||||||
'submit' => 'Submit',
|
'submit' => 'Send Password Reset Email',
|
||||||
'page_title' => 'Customer - Forgot Password Form'
|
'page_title' => 'Customer - Forgot Password Form'
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
@component('shop::emails.layouts.master')
|
@component('shop::emails.layouts.master')
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<a href="{{ config('app.url') }}">
|
<a href="{{ config('app.url') }}">
|
||||||
@include ('shop::emails.layouts.logo')
|
@if (core()->getConfigData('general.design.admin_logo.logo_image'))
|
||||||
|
<img src="{{ \Illuminate\Support\Facades\Storage::url(core()->getConfigData('general.design.admin_logo.logo_image')) }}" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
|
||||||
|
@else
|
||||||
|
<img src="{{ asset('vendor/webkul/ui/assets/images/logo.png') }}" alt="{{ config('app.name') }}"/>
|
||||||
|
@endif
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
@if (core()->getConfigData('general.design.admin_logo.logo_image'))
|
@if ($logo = core()->getCurrentChannel()->logo_url)
|
||||||
<img src="{{ \Illuminate\Support\Facades\Storage::url(core()->getConfigData('general.design.admin_logo.logo_image')) }}" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
|
<img src="{{ $logo }}" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
|
||||||
@else
|
@else
|
||||||
<img src="{{ bagisto_asset('images/logo.svg') }}">
|
<img src="{{ bagisto_asset('images/logo.svg') }}">
|
||||||
@endif
|
@endif
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
@component('shop::emails.layouts.master')
|
@component('shop::emails.layouts.master')
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<a href="{{ config('app.url') }}">
|
<a href="{{ config('app.url') }}">
|
||||||
@include ('shop::emails.layouts.logo')
|
@if (core()->getConfigData('general.design.admin_logo.logo_image'))
|
||||||
|
<img src="{{ \Illuminate\Support\Facades\Storage::url(core()->getConfigData('general.design.admin_logo.logo_image')) }}" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
|
||||||
|
@else
|
||||||
|
<img src="{{ asset('vendor/webkul/ui/assets/images/logo.png') }}" alt="{{ config('app.name') }}"/>
|
||||||
|
@endif
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,11 @@
|
||||||
@component('shop::emails.layouts.master')
|
@component('shop::emails.layouts.master')
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<a href="{{ config('app.url') }}">
|
<a href="{{ config('app.url') }}">
|
||||||
@include ('shop::emails.layouts.logo')
|
@if (core()->getConfigData('general.design.admin_logo.logo_image'))
|
||||||
|
<img src="{{ \Illuminate\Support\Facades\Storage::url(core()->getConfigData('general.design.admin_logo.logo_image')) }}" alt="{{ config('app.name') }}" style="height: 40px; width: 110px;"/>
|
||||||
|
@else
|
||||||
|
<img src="{{ asset('vendor/webkul/ui/assets/images/logo.png') }}" alt="{{ config('app.name') }}"/>
|
||||||
|
@endif
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue