|
@@ -428,15 +428,15 @@
|
|
|
|
|
|
{{-- Show imprint and privacy link --}}
|
|
|
<div class="float-right d-none d-sm-inline-block">
|
|
|
- @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT' == "true"))
|
|
|
+ @if (config('SETTINGS::SYSTEM:SHOW_IMPRINT') == "true")
|
|
|
<a target="_blank" href="{{ route('imprint') }}"><strong>{{ __('Imprint') }}</strong></a> |
|
|
|
@endif
|
|
|
- @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY' == "true"))
|
|
|
+ @if (config('SETTINGS::SYSTEM:SHOW_PRIVACY') == "true")
|
|
|
<a target="_blank" href="{{ route('privacy') }}"><strong>{{ __('Privacy') }}</strong></a>
|
|
|
@endif
|
|
|
- @if (config('SETTINGS::SYSTEM:SHOW_TOS' == "true"))
|
|
|
- | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
|
|
- @endif
|
|
|
+ @if (config('SETTINGS::SYSTEM:SHOW_TOS') == "true")
|
|
|
+ | <a target="_blank" href="{{ route('tos') }}"><strong>{{ __('Terms of Service') }}</strong></a>
|
|
|
+ @endif
|
|
|
</div>
|
|
|
</footer>
|
|
|
|