Select which sellers this manager can monitor and process orders for.
@php
$sellers = \App\Models\User::where('role', 'seller')->orderBy('name')->get();
@endphp
@if($sellers->count() > 0)
@foreach($sellers as $seller)
@endforeach
@else
No sellers available. Create sellers first.
@endif
@error('seller_ids')
{{ $message }}
@enderror