| Subject Name |
{!! Form::text('subject_name[]', null, [
'class' => 'form-control input-sm text-center subject_name',
'id' => 'subject_name1',
'placeholder' => 'Enter Subject Name',
'autocomplete' => 'off',
'style' => 'margin-right: 10px;',
'oninput' => "checkForReadonly(this,1)"
]) !!}
|
Mark |
{!! Form::number('subject_marks[]', null, [
'class' => 'form-control input-sm text-center subject_marks_input',
'id' => 'subject_marks_input1',
'placeholder' => 'Enter Marks',
'autocomplete' => 'off',
'min' => '0',
'step' => '0.01',
'oninput' => "validity.valid||(value='');",
'readonly' => true
]) !!}
|
Pass Mark |
{!! Form::number('subject_pass_marks[]', null, [
'class' => 'form-control input-sm text-center subject_pass_marks_input',
'id' => 'subject_pass_marks_input1',
'placeholder' => 'Enter Marks',
'autocomplete' => 'off',
'min' => '0',
'step' => '0.01',
'oninput' => "validity.valid||(value='');", // Merged the two oninput functions
'readonly' => true
]) !!}
|
|