@extends('admin.layouts.master') @section('content')

فعال سازی ورود 2 مرحله ای

@if ($errors->updateProfileInformation->any())
    @foreach ($errors->updateProfileInformation->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@if ($errors->updateProfileInformation->any())
    @foreach ($errors->updateProfileInformation->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @csrf @method('PUT')
@if (empty(auth()->user()->two_factor_secret))
@csrf
@else @if (is_null(auth()->user()->two_factor_confirmed_at))

کلید QR ورود به سایت

{!! auth()->user()->twoFactorQrCodeSvg() !!}
@csrf

کد فعال سازی

@else @endif {{--

Recovery Codes

    @foreach (auth()->user()->recoveryCodes() as $code)
  • {{ $code }}
  • @endforeach
--}}
@method('delete') @csrf
@endif
@endsection @section('js-page') @endsection