@extends('layouts.main') @section('title', 'Add User to Company') @section('content')

Add User to {{ $company->company ?? $company->name }}

Create a new user account under this company
Back to Companies
@php $stats = $company->getUserUsageStats(); $subscription = $company->companySubscription; @endphp @if(session('error')) @endif @if(session('success')) @endif
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('workspace_name')
{{ $message }}
@enderror If provided, a default workspace will be created for this user
Note:
  • The new user will be automatically assigned the "Company User" role
  • The user will be linked to company: {{ $company->company ?? $company->name }}
  • A secure 8-character password will be automatically generated
  • The verification email will include the login credentials
  • The user must verify their email address to activate their account
  • The user can change their password after first login
  • Company users can only access data related to their parent company
Cancel
@endsection @section('scripts') @endsection