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

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

Verify Two Factor Authentication
Google Authenticator generates 2-Step Verification codes on your phone. 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 the Google Authenticator app on your phone.
@if($user->is_two_factor_enabled)
@else @endif {{ csrf_field() }} @if(! $user->is_two_factor_enabled)
@endif @if($user->is_two_factor_enabled) @else @endif
@endsection