@props([
'socialProviders' => \Devdojo\Auth\Helper::activeProviders(),
'separator' => true,
'separator_text' => __('or')
])
@if(count($socialProviders))
@if($separator && config('devdojo.auth.settings.social_providers_location') != 'top')
{{ $separator_text }}
@endif
@foreach($socialProviders as $slug => $provider)
@endforeach
@if (config('saashovel.TERMS_AND_PRIVACY_POLICY'))
{!! __('*By signing in with a third-party provider, you automatically agree to the :terms_of_service and :privacy_policy', [
'terms_of_service' => ''.__('Terms of Service').'',
'privacy_policy' => ''.__('Privacy Policy').'',
]) !!}
@endif
@if($separator && config('devdojo.auth.settings.social_providers_location') == 'top')
{{ $separator_text }}
@endif
@endif