@extends('layouts.app') @section('content')
@include('auth/banner')
@action('login_form.before')
{{ csrf_field() }} @foreach((array)$credentials as $name => $value) @endforeach @if ($remember) @endif

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

{{ __("To continue open up authenticator app on your mobile device and issue 2FA code or use one of your recovery codes.") }}

@if ($error)
{{ __('The code is invalid or has expired.') }}
@endif
@action('login_form.after')
@endsection @section('javascript') $(document).ready(function(){ $('#2fa_code').focus(); }); @endsection