👤 New User Created

Hello Admin,

A new user has been successfully created in your Recruit CRM system. Below are the details:

📋 User Information

Name: {{ $user->name }}
Email: {{ $user->email }}
Role: @if($user->roles->count() > 0) @foreach($user->roles as $role) {{ $role->name }} @endforeach @else No role assigned @endif
Status: @if($user->status) ✅ Active @else ❌ Inactive @endif
Temporary Password: {{ $password }}
🔐 Password Information:
A temporary password has been generated and sent to the user. They will be required to change it on their first login.

⏰ Account Created

Date: {{ $user->created_at->format('F j, Y') }}

Time: {{ $user->created_at->format('g:i A') }}

Timezone: {{ config('app.timezone') }}

System Information:
• User ID: {{ $user->id }}
• Created by: {{ auth()->user()->name ?? 'System' }}
• IP Address: {{ request()->ip() ?? 'Unknown' }}
• User Agent: {{ request()->userAgent() ?? 'Unknown' }}

📝 Next Steps

  • Verify the user's role and permissions are correct
  • Ensure the user has access to the appropriate company data
  • Monitor the user's first login and activity
  • Contact the user if they haven't logged in within 24 hours