@extends('app') @section('content')

{{ auth()->user()->email }}

@if (session('status') === 'two-factor-authentication-enabled')
Two-Factor Authentication is enabled!
@endif @if (session('status') === 'two-factor-authentication-disabled')
Two-Factor Authentication is disabled.
@endif
@csrf @if (Auth::user()->two_factor_secret) @method('DELETE')
{!! Auth::user()->twoFactorQrCodeSvg() !!}

Recovery Codes

    @foreach (json_decode(decrypt(auth()->user()->two_factor_recovery_codes)) as $recovery_code)
  • {{ $recovery_code }}
  • @endforeach
@else @endif
@endsection