@extends('auth.master',['menu'=>'dashboard']) @section('title', isset($title) ? $title : __('Phone two factor')) @section('content')
{{__('Two Factor Authentication')}}
{{__('Check otp sms and enter the code for')}} {{settings('app_title')}}
{{Form::open(['route' => 'twoFactorVerify', 'files' => true])}}
{{__('OTP Code')}}
@error('code')
{{ $message }}
@enderror
{{__('Verify')}}
{{__('Resend OTP')}}
@if(in_array(GOOGLE_AUTH,$two_factor) && Auth::user()->g2f_enabled == ENABLE)
{{__('Verify By Google Auth')}}
@endif @if(in_array(EMAIL_AUTH,$two_factor) && Auth::user()->email_enabled == ENABLE)
{{__('Verify By Email')}}
@endif {{Form::close()}}
{{__('Welcome To')}} {{ settings('app_title') }}
@endsection @section('script') @endsection