@extends('layouts.admin') @section('title', 'Create New Tenant') @section('content')
Back to Tenants

Create New Tenant

Add a new tenant to the system with their subscription plan

@if ($errors->any())

There were errors with your submission

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Basic Information

Essential details about the tenant

Domain used to access the tenant (e.g., client1.localhost)

Company Information

Additional company details

Responsible User

Create the main user who will be responsible for this tenant

@error('user_name')

{{ $message }}

@enderror
@error('user_email')

{{ $message }}

@enderror

This will be the login email for the responsible user

@error('user_phone')

{{ $message }}

@enderror
Tenant Owner (Full Access)

This user will have full administrative access to the tenant

Subscription Plan

Select the subscription plan for this tenant

@error('plan_id')

{{ $message }}

@enderror

Tenant will be active immediately after creation

Start with a trial period before billing

Additional Notes

Any additional information about this tenant

All required fields must be completed
Cancel
@endsection