@extends('layouts.bootstrap') @section('title', 'Create User') @section('content')

Create New User

Add a new user to the system

Back to Users
User Information
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
User will receive login credentials at this email address
@error('password')
{{ $message }}
@enderror
@error('role')
{{ $message }}
@enderror
Choose the appropriate role based on user's responsibilities
Cancel
Role Descriptions
Administrator
Full system access including user management, all CRUD operations, and system configuration.
Manager
Can manage products, tenders, categories, and document types. Cannot manage users.
Tender Creator
Can create and manage tenders only. Cannot access products or categories.
Product Creator
Can create and manage products only. Cannot access tenders or categories.
Viewer
Read-only access to all content. Cannot create or modify anything.
Security Guidelines
  • Use strong passwords (minimum 8 characters)
  • Assign the minimum role required for user's tasks
  • Regularly review user permissions
  • Deactivate unused accounts promptly
  • Only admins can create other admin users
@endsection