@if(config('settings.auth_google') || config('settings.auth_microsoft') || config('settings.auth_apple'))

{{ mb_strtolower(__('Or')) }}

@if(config('settings.auth_google'))
{{ __('Continue with :name', ['name' => 'Google']) }}
@endif @if(config('settings.auth_microsoft'))
{{ __('Continue with :name', ['name' => 'Microsoft']) }}
@endif @if(config('settings.auth_apple'))
@include('icons.apple', ['class' => 'fill-current w-4 h-4 me-2']) {{ __('Continue with :name', ['name' => 'Apple']) }}
@endif
@endif