2021-06-29 05:02:45 +08:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
<div class="container small py-xl">
|
|
|
|
|
|
|
|
<div class="card content-wrap auto-height">
|
2021-08-08 21:24:44 +08:00
|
|
|
<h1 class="list-heading">{{ trans('auth.mfa_setup') }}</h1>
|
|
|
|
<p class="mb-none"> {{ trans('auth.mfa_setup_desc') }}</p>
|
2021-06-30 05:06:49 +08:00
|
|
|
|
|
|
|
<div class="setting-list">
|
2021-08-08 21:24:44 +08:00
|
|
|
@foreach(['totp', 'backup_codes'] as $method)
|
|
|
|
@include('mfa.setup-method-row', ['method' => $method])
|
|
|
|
@endforeach
|
2021-06-30 05:06:49 +08:00
|
|
|
</div>
|
|
|
|
|
2021-06-29 05:02:45 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|