@extends('layouts.user') @section('title') 2 Factor Authentication @endsection @section('content')
{{ auth()->user()->username }}

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

Verify Two Factor Authentication
Our 2FA authenticator generates 2-Step Verification codes on your account. 2-Step Verification provides stronger security for account by requiring a second step of verification when you sign in. In addition to your password, you’ll also need a code generated by our 2FA authenticator and sent to your email.
{{ csrf_field() }} @if(auth()->user()->is_two_factor) @else @endif
@endsection