@extends('emails.layout')
@section('content')
Your Admin Account Has Been Created!
Hello {{ $user->name }},
An administrator account has been created for you on {{ config('app.name') }}. You now have access to the administrative panel with {{ $role->name }} privileges.
Your Account Details
Full Name:
{{ $user->name }}
Email Address:
{{ $user->email }}
Role:
{{ ucfirst($role->name) }}
Temporary Password:
{{ $temporaryPassword }}
Login URL:
{{ $loginUrl }}
Important Security Notice:
For your security, please change your password immediately after your first login. The temporary password provided above should only be used for your initial access.
Your Permissions
As a {{ ucfirst($role->name) }}, you have access to:
@if($role->name === 'admin')
- Full system administration
- User and role management
- Tenant management
- System settings and configuration
- All reports and analytics
@elseif($role->name === 'manager')
- User management within your scope
- Client and document management
- Invoice creation and management
- Reports and analytics
@else
- Basic user functions
- Document upload and management
- Invoice viewing
- Profile management
@endif
Getting Started
After logging in, we recommend:
- Change your password - Go to your profile settings
- Complete your profile - Add any additional information
- Explore the dashboard - Familiarize yourself with the interface
- Review your permissions - Understand what you can access
If you have any questions or need assistance, please don't hesitate to contact our support team.
Welcome to the team!
Best regards,
{{ config('app.name') }} Team
@endsection