Adding tabindex=0 means when pressing tab the focus goes right to the TOTP input field. When using a Password Manager this makes it easier than having to hit tab 3X to get the right focus.
{{ csrf_field() }}
<input type="text"
name="code"
+ tabindex="0"
placeholder="{{ trans('auth.mfa_gen_totp_provide_code_here') }}"
class="input-fill-width {{ $errors->has('code') ? 'neg' : '' }}">
@if($errors->has('code'))
<div class="mt-s text-right">
<button class="button">{{ trans('common.confirm') }}</button>
</div>
-</form>
\ No newline at end of file
+</form>