@foreach($students as $student)
{{ $student->reg_no }} {{ $student->first_name.' '.$student->middle_name.' '.$student->last_name }} {!! Form::checkbox('absent_theory[]', $student->id, false, ['class' => 'form-control']) !!} {!! Form::number('obtain_mark_theory[]', null, ["class" => "form-control border-form","min"=>"0",'step'=>'any']) !!} {!! Form::checkbox('absent_practical[]', $student->id, false, ['class' => 'form-control']) !!} {!! Form::number('obtain_mark_practical[]', null, ["class" => "form-control border-form","min"=>"0",'step'=>'any']) !!}
@endforeach