{{ $backLabel }}
@if ($member->getTranslation('qualifications', app()->getLocale()))

{{ __('Qualifications') }}

{{ $member->getTranslation('qualifications', app()->getLocale()) }}

@endif @if ($member->getTranslation('bio', app()->getLocale()))

{{ __('Biography') }}

@php $bio = $member->getTranslation('bio', app()->getLocale()); $doc = null; if (is_array($bio) && isset($bio['type']) && $bio['type'] === 'doc') { $doc = $bio; } elseif (is_string($bio) && str_starts_with(trim($bio), '{')) { $decoded = json_decode($bio, true); if (is_array($decoded) && isset($decoded['type']) && $decoded['type'] === 'doc') { $doc = $decoded; } } if ($doc !== null) { $bioHtml = \Filament\Forms\Components\RichEditor\RichContentRenderer::make($doc) ->fileAttachmentsDisk('public') ->fileAttachmentsVisibility('public') ->toHtml(); } else { $bioHtml = is_string($bio) ? $bio : ''; } @endphp {!! $bioHtml !!}
@endif @if (!$member->getTranslation('qualifications', app()->getLocale()) && !$member->getTranslation('bio', app()->getLocale()))

{{ __('No additional information available.') }}

@endif