@extends('layouts.app') @section('content')
@if(session()->has('message'))

{{ session()->get('message') }}

@endif
@csrf

{{ __('global.two_factor.title') }}

{{ __('global.two_factor.sub_title', ['minutes' => 15]) }}

@if($errors->has('two_factor_code'))
{{ $errors->first('two_factor_code') }}
@endif
@endsection