@include('partials._provider')
{{$providerdata->first_name .' '. $providerdata->last_name}} {{$pageTitle}}
{{ html()->form('POST', '#')->attribute('data-toggle', 'validator')->id('provider')->open() }}
{{ html()->hidden('id', $provider_id)->class('form-control')->attribute('placeholder', 'id') }}
{{ __('messages.update') }} {{ html()->label(__('messages.day') . ' *', 'Day')->class('form-control-label col-md-12') }}
{{ html()->label(__('messages.time') . ' *', 'Time')->class('form-control-label col-md-12') }}
@foreach ($slotsArray as $slotDay) @if (isset($slotDay['day']) && isset($slotDay['slot']))
{{-- --}} @if($slotDay['slot']) @else
No time slots selected for {{ $slotDay['day'] }} day.
@endif
@endif @endforeach
{{ html()->form()->close() }}