@extends('layouts.app')
@section('title', 'Account Security')
@section('content')
@if (!empty($company?->company_number))
@include('partials.company-number', ['company' => $company])
@endif
Effective policy: {{ $policy }}
Status:
@if ($user->two_factor_enabled)
Enabled
@else
Disabled
@endif
@if ($canEnable)
@endif
@if ($canDisable)
@endif
@error('two_factor')
{{ $message }}
@enderror
@endsection