@if(in_array(GOOGLE_AUTH,$two_factor) && Auth::user()->g2f_enabled == ENABLE)
Google
@endif
@if(in_array(EMAIL_AUTH,$two_factor) && Auth::user()->email_enabled == ENABLE)
Email
@endif
@if(in_array(PHONE_AUTH,$two_factor) && Auth::user()->phone_enabled == ENABLE)
Phone
@endif
{{Form::open(['route' => 'twoFactorVerify', 'files' => true])}}
@if(in_array(PHONE_AUTH,$two_factor) && Auth::user()->phone_enabled == ENABLE)
{{--
--}}
@endif
@if(in_array(EMAIL_AUTH,$two_factor) && Auth::user()->email_enabled == ENABLE)
{{--
--}}
@endif
{{Form::close()}}