@php // Resolve the content partial for the active locale; fall back to German if an EN partial // is missing, so a not-yet-translated topic never breaks the page. $locale = in_array(app()->getLocale(), ['de', 'en'], true) ? app()->getLocale() : 'de'; $partial = 'livewire.help.content.'.$locale.'.'.$topic; if (! view()->exists($partial)) { $partial = 'livewire.help.content.de.'.$topic; } @endphp

{{ __('help.eyebrow') }}

{{ __('help.heading') }}

{{ __('help.subtitle') }}

{{-- Topic navigation (wraps above the content on small screens) --}} {{-- Content --}}
@include($partial)