@extends('layout.dashboard') @section('content')
@if(isset($sub_menu)) @include('dashboard.partials.sub-sidebar') @endif
{{ trans('dashboard.settings.security.security') }}
@include('dashboard.partials.errors')
{{ trans('forms.settings.security.allowed-domains-help') }}
@if(!$unsecure_users->isEmpty())
{{ trans('dashboard.settings.security.two-factor') }}
@foreach($unsecure_users as $user)
{{ $user->username }}
@endforeach
@endif
@stop