Welcome {{ $utilisateur->name }}

@if($utilisateur->two_factor_secret) Two factor authentication is enabled.

QR Code for authenticator applications

{!! $utilisateur->twoFactorQrCodeSvg() !!}

Recovery codes

@else Two factor authentication is not enabled. @endif @if($utilisateur->two_factor_secret)
{!! $utilisateur->twoFactorQrCodeSvg() !!}
{{ decrypt($utilisateur->two_factor_secret) }} @endif @if($utilisateur->two_factor_recovery_codes)
@foreach (json_decode(decrypt($utilisateur->two_factor_recovery_codes), true) as $code)
{{ $code }}
@endforeach
@endif