Multi-Factor Authentication
Setup multi-factor authentication as an extra layer of security
for your user account.
@if ($mfaMethods->count() > 0)
@icon('check-circle')
@else
@icon('cancel')
@endif
{{ $mfaMethods->count() }} {{ $mfaMethods->count() === 1 ? 'method' : 'methods' }} configured
@if($user->id === user()->id)
Configure Methods
@endif
@if(user()->id === $user->id && count($activeSocialDrivers) > 0)
{{ trans('settings.users_social_accounts') }}
{{ trans('settings.users_social_accounts_info') }}
@foreach($activeSocialDrivers as $driver => $enabled)
@icon('auth/'. $driver, ['style' => 'width: 56px;height: 56px;'])
@endforeach
@endif
@if((user()->id === $user->id && userCan('access-api')) || userCan('users-manage'))
@include('users.api-tokens.list', ['user' => $user])
@endif