Back to form

Customer Groups



Add New Customer Group
@csrf
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@if($customerGroups->count() > 0)

Existing Groups ({{ $customerGroups->count() }})

@endif
@forelse($customerGroups as $group)
{{ $group->name }} {{ $group->customers_count }} {{ Str::plural('customer', $group->customers_count) }}
Edit @if($group->isDeletable())
@csrf @method('DELETE')
@else @endif
@if($group->description)
{{ $group->description }}
@endif
@empty
📁

No Customer Groups Yet

Use the form above to create your first customer group.

@endforelse