@extends('layouts.auth') @section('title', '2FA') @section('content')

Welcome {{ auth()->user()->name }}

@csrf @if(auth()->user()->two_factor_secret) Two factor authentication is enabled.

QR Code for authenticator applications

{!! auth()->user()->twoFactorQrCodeSvg() !!}

Recovery codes

@method('DELETE') @else Two factor authentication is not enabled. @endif
@endsection