1 @extends('layouts.simple')
4 <div class="container very-small py-xl">
6 <div class="card content-wrap auto-height">
7 <h1 class="list-heading">{{ trans('auth.mfa_verify_access') }}</h1>
8 <p class="mb-none">{{ trans('auth.mfa_verify_access_desc') }}</p>
12 <h5>{{ trans('auth.mfa_verify_no_methods') }}</h5>
13 <p class="small">{{ trans('auth.mfa_verify_no_methods_desc') }}</p>
15 <a href="{{ url('/mfa/setup') }}" class="button outline">{{ trans('common.configure') }}</a>
21 @include('mfa.parts.verify-' . $method)
24 @if(count($otherMethods) > 0)
26 @foreach($otherMethods as $otherMethod)
27 <div class="text-center">
28 <a href="{{ url("/mfa/verify?method={$otherMethod}") }}">{{ trans('auth.mfa_verify_use_' . $otherMethod) }}</a>