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