{!! Form::label('confidence','Confidence:') !!}
Very confidence
Quite confidence
Not very confidence
@if ($errors->has('confidence'))
{{ $errors->first('confidence') }}
@endif
{!! Form::label('decision','The decision:') !!}
accept as is (editorial changes only, can be done by the editor)
accept, requires changes by the author to be approved by the editor
reject, substantial author's revisions needed before resubmission for another review
decision delayed, MML revision needed
reject, no hope of getting anything of value
@if ($errors->has('decision'))
{{ $errors->first('decision') }}
@endif
{!! Form::label('presentation','Presentation:') !!}
Very poor
Poor
Good
Very good
@if ($errors->has('presentation'))
{{ $errors->first('presentation') }}
@endif
{!! Form::label('quality_of_formalization','The quality of formalization:') !!}
Very poor
Poor
Good
Very good
@if ($errors->has('quality_of_formalization'))
{{ $errors->first('quality_of_formalization') }}
@endif
{!! Form::label('significance_for_mml','Significance for MML:') !!}
Very poor
Poor
Good
Very good
@if ($errors->has('significance_for_mml'))
{{ $errors->first('significance_for_mml') }}
@endif
{!! Form::label('comments',"Justification/comments (to be forwarded to the authors):") !!}
{!! Form::textarea('comments',null,['class'=>'form-control']) !!}
@if ($errors->has('comments'))
{{ $errors->first('comments') }}
@endif