@extends('layout.dashboard') @section('content')
@if(isset($sub_menu)) @include('partials.dashboard.sub-sidebar') @endif
{{ trans('dashboard.settings.security.security') }}
@include('partials.dashboard.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