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

Add New User

Create a new company user
@if(session('error')) @endif @php $stats = auth()->user()->getUserUsageStats(); $subscription = auth()->user()->companySubscription; @endphp
@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
Password must be at least 8 characters long.
@error('password_confirmation')
{{ $message }}
@enderror
Cancel
User Information
  • The user will be assigned the "Company User" role automatically
  • They will have access to your company's workspaces and data
  • An email verification link will be sent to their email address
  • You can edit or delete this user later from the users list
@endsection