Files
jabali-panel/resources/views/filament/admin/pages/auth/two-factor-challenge.blade.php
2026-02-02 03:11:45 +02:00

24 lines
642 B
PHP

<x-filament-panels::page.simple>
<form wire:submit="authenticate" class="space-y-4">
{{ $this->form }}
<x-filament::button
type="submit"
class="w-full"
>
{{ __('Verify') }}
</x-filament::button>
</form>
<div class="text-center mt-4">
<x-filament::link
tag="button"
wire:click="toggleRecoveryCode"
color="gray"
size="sm"
>
{{ $this->useRecoveryCode ? __('Use authentication code') : __('Use a recovery code') }}
</x-filament::link>
</div>
</x-filament-panels::page.simple>