@if(count($content['staff_list']) > 0)
@foreach($content['staff_list'] as $key => $value)
{!! Form::checkbox('staff[]', $value['dtb_staff_id'], '', [
'class' => 'form-check-input me-2',
'id' => "staff{$value['dtb_staff_id']}",
]) !!}
@endforeach
@else
{!! __("lang.error.empty") !!}
@endif