@lang('home.Are You sure want to scheduling this session?')

@lang('home.For scheduling session you must chose one of those sessions and click yes')

@if(count($sessions)) {{ Form::open(['id'=>'schedulingSessionForm','class'=>'col-12']) }}
@foreach($sessions as $session)
@lang('home.'.date('l',strtotime($session->start_time))) {{ date('d/m/Y ',strtotime($session->start_time)) }} {{ date('h:i ',strtotime($session->start_time)) }}@lang('home.'.date('a',strtotime($session->start_time))) - {{ date('h:i ',strtotime($session->start_time.' +'.$session->type.' Minutes')) }}@lang('home.'.date('a',strtotime($session->start_time.' +'.$session->type.' Minutes')))
@endforeach
{{ Form::close() }} @else
@lang('home.No sessions available')
@endif