@php
$checks = [
'Google live' => $googleEnabled && $googleClientId !== '' && $googleHasSecret,
'Facebook live' => $fbEnabled && $fbClientId !== '' && $fbHasSecret,
'reCAPTCHA live' => $reEnabled && $reSiteKey !== '' && $reHasSecret,
];
@endphp
@foreach ($checks as $label => $ok)
@if ($ok)
@else
@endif
{{ $label }}
@endforeach
{{ __('A provider only shows on the login & register pages when it is enabled and both keys are saved.') }}