3 namespace BookStack\Http\Controllers\Auth;
5 use BookStack\Http\Controllers\Controller;
7 class MfaController extends Controller
10 * Show the view to setup MFA for the current user.
12 public function setup()
14 $userMethods = user()->mfaValues()
15 ->get(['id', 'method'])
17 return view('mfa.setup', [
18 'userMethods' => $userMethods,