@extends('platform::auth') @section('title', __('Two-Factor Authentication')) @section('content')

{{__('Two-Factor Authentication')}}

@csrf

{{ __('Please confirm access to your account by entering the authentication code provided by your authenticator application.') }}

{!! \Orchid\Screen\Fields\Input::make('code') ->autofocus() ->inputmode('numeric') ->pattern("[0-9]*") ->autocomplete('one-time-code') ->placeholder('Verification code from application') ->title('Authentication code:') !!}
{!! \Orchid\Screen\Fields\Input::make('recovery_code') ->autofocus() ->placeholder('Emergency recovery code') ->help('Please confirm access to your account by entering one of your emergency recovery codes.') ->title('Recovery Code:') !!}
@endsection