@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)
@csrf
@endif @if ($canDisable)
@csrf
@csrf
@error('password')

{{ $message }}

@enderror
@error('code')

{{ $message }}

@enderror
@endif @error('two_factor')

{{ $message }}

@enderror
@endsection