@extends('admin/layouts/default') {{-- Page title --}} @section('title') View User Details @parent @stop {{-- page level styles --}} @section('header_styles') @stop {{-- Page content --}} @section('content')

Two Factor Authentication

Two Factor Authentication

@if($user->google2fa_enable==0)

Scan above qr code in your mobile google authenticator app

Enter the verification OTP in below input

{{ csrf_field() }}
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('failed'))
{{ session()->get('failed') }}
@endif
@else

Enter your current password for disable two factor authentication

{{ csrf_field() }}
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('failed'))
{{ session()->get('failed') }}
@endif
@endif
@stop {{-- page level scripts --}} @section('footer_scripts') @stop