@extends('layouts.tenant') @section('title', 'Add New Client') @section('content')

Add New Client

Create a new client profile with contact and billing information.

Back to Clients
@if($errors->any())
Please correct the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Basic Information

@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror

Include country code (e.g., +1 for US)

@error('phone')

{{ $message }}

@enderror
@error('company')

{{ $message }}

@enderror
@error('tax_id')

{{ $message }}

@enderror

Address Information

@error('address')

{{ $message }}

@enderror
@error('city')

{{ $message }}

@enderror
@error('state')

{{ $message }}

@enderror
@error('zip_code')

{{ $message }}

@enderror
@error('country')

{{ $message }}

@enderror

Additional Notes

@error('notes')

{{ $message }}

@enderror

Settings

@error('status')

{{ $message }}

@enderror

Active clients can receive invoices and access the client portal.

Quick Tips

  • Email address must be unique for each client
  • Password will be generated automatically
  • Tax ID is useful for generating compliant invoices
  • Complete address helps with tax calculations
  • Notes are private and only visible to you
Cancel
@endsection @push('scripts') @endpush