@extends('layouts.app') @section('content')

Agency Profile

@include('agent.header')

User Management

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif @foreach($users as $user) @endforeach
User Role Two-step Joined Date
{{ $user->name }} {{ $user->email }}
{{ ucfirst($user->role->role_name) }} @if($user->mfa) @if($user->mfa->enabled)
Enabled
@else
Disabled
@endif @endif
{{ $user->created_at->format('d M Y H:i') }}
@csrf User Image

Reset Password

User Name :
@csrf

Two Factor Authentication

User Name :
@csrf
@endsection @section('scripts') @if(session('success')) @endif @endsection