@php // W projekcie global nie korzystamy z tabeli sw000_organizacja. $extends_file = 'layouts.index'; @endphp @extends($extends_file) @section('title', 'Weryfikacja 2FA') @section('content') {{-- left div */ --}}
Logo
{{-- right div */ --}}
Weryfikacja 2FA
@if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Podaj kod z aplikacji Authenticator albo kod awaryjny.

Konto: {{ $pendingUser->email }}

@csrf
@include('auth.partials.totp-code-inputs', [ 'fieldName' => 'code', 'fieldId' => 'code', 'oldValue' => old('code'), 'length' => 6, 'mode' => 'numeric', 'separatorEvery' => 0, 'inactive' => false, 'placeholder' => 'np. 123456' ])
@include('auth.partials.totp-code-inputs', [ 'fieldName' => 'recovery_code', 'fieldId' => 'recovery_code', 'oldValue' => old('recovery_code'), 'length' => 12, 'mode' => 'alnum', 'separatorEvery' => 4, 'inactive' => true, 'placeholder' => 'np. AAAA-BBBB-CCCC' ])
@endsection