11 lines
504 B
PHP
11 lines
504 B
PHP
<p class="text-center" style="font-size: xx-large;">
|
|
@if (UserConfig::isLoginWithFacebookEnabled())
|
|
<a href="{{ route('login.facebook') }}"><i class="fab fa-facebook fa-fw"></i></a>
|
|
@endif
|
|
@if (UserConfig::isLoginWithTwitterEnabled())
|
|
<a href="{{ route('login.twitter') }}"><i class="fab fa-twitter fa-fw"></i></a>
|
|
@endif
|
|
@if (UserConfig::isLoginWithGoogleEnabled())
|
|
<a href="{{ route('login.google') }}"><i class="fab fa-google fa-fw"></i></a>
|
|
@endif
|
|
</p> |