Select which POS locations this cashier can access. Admin and Manager can access all locations automatically.
@foreach(\App\Models\Warehouse::where('type', 'pos')->where('is_active', true)->orderBy('name')->get() as $warehouse)
id, old('warehouse_ids', [])) ? 'checked' : '' }}
class="h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-gray-300 dark:border-gray-600 rounded">
@endforeach
@if(\App\Models\Warehouse::where('type', 'pos')->where('is_active', true)->count() === 0)
No active POS locations found.
@endif