@extends('layouts.guest') @section('page-title') {{ __('Authentication') }} @endsection @section('content')

{{ __('Login') }}

@csrf

{{ __('Please enter the') }} {{ __(' OTP') }} {{ __(' generated on your Authenticator App') }}.
{{ __('Ensure you submit the current one because it refreshes every 30 seconds') }}.

@if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif
{{ __('Logout') }}
{{ csrf_field() }}
@endsection