{!! Form::open([ 'route' => 'examOpinion.siteStoreExamProblem', 'files' => true, 'id' => 'add-exam-problem-form', ]) !!} {!! Form::hidden('exam_id', $exam_id, []) !!} {!! Form::hidden('question_id', $question_id, []) !!} {!! Form::hidden('user_id', $user_id, []) !!}
{{ trans('messages.Send successfully') }}

{{ Form::radio('problem_type', 'image_upload', true, ['id' => 'image_upload']) }}

{{ Form::radio('problem_type', 'lang_error', false, ['id' => 'lang_error']) }}

{{ Form::radio('problem_type', 'another_problem', false, ['id' => 'another_problem']) }}

{!! Form::textarea('problem_descreption', null, [ 'id' => 'problem_descreption', 'class' => 'form-control', 'placeholder' => trans('messages.Description'), ]) !!}
{!! Form::Close() !!}