{!! Form::model($model) !!}
{{ __('Comment') }}
{!! Form::textarea('comment', $model->document_no, ['rows'=>5,'class'=>'form-control','required','minlength'=>'200']) !!}
{{ __('Rate :') }}
@for($i=1; $i<=5; $i++)
{!! Form::radio('rating', $i, true, ['class'=>'form-check-input']) !!}
{{ $i }}
@endfor
{{ __('Submit') }}
{!! Form::close() !!}