|
{!! Form::label('degree_title', $degree->title, ['class' => 'col-sm-12 control-label']) !!}
{!! Form::hidden('degrees_id[]', $degree->id, ["class" => "col-md-12"]) !!}
{{--["class" => "col-xs-10 col-sm-11"]--}}
|
{!! Form::number('total_marks[]', $degree->total_marks>0?$degree->total_marks:0, ["class" => "col-md-12 mark-obtained calculate-percent"]) !!}
|
{!! Form::number('obtained_mark[]',$degree->obtained_mark>0?$degree->obtained_mark:0, ["class" => "col-md-12 maximum-mark calculate-percent"]) !!}
|
{!! Form::text('receive_in_college_date[]', $degree->receive_in_college_date, ["class" => "form-control date-picker border-form input-mask-date"]) !!}
|
{!! Form::text('issue_date[]', $degree->issue_date, ["class" => "form-control date-picker border-form input-mask-date"]) !!}
|
|
@endforeach
@endif