@php $configData = Helper::applClasses(); @endphp @extends('layouts/fullLayoutMaster') @section('title', __('locale.auth.two_factor_authentication')) @section('page-style') @endsection @section('content')
@if($configData['theme'] === 'dark') two steps verification @else two steps verification @endif

{{ __('locale.auth.two_factor_authentication') }}

We sent a verification code to your email. Enter the code from the mobile in the field below.

@if(Auth::check())

{{ preg_replace_callback('/(\w)(.*?)(\w)(@.*?)$/s', function ($matches){ return $matches[1].preg_replace("/\w/", "*", $matches[2]).$matches[3].$matches[4]; }, Auth::user()->email) }}

@endif
@csrf
Type your 6 digit security code
@error('two_factor_code') {{ $message }} @enderror

Didn’t get the code? Resend or {{ __('locale.auth.verify_with_backup_code') }}

@endsection