{!! Form::label('feedback_subject', 'Subject*') !!} {!! Form::textarea('feedback_subject' , null , ['class' => 'form-control','required'=> true,'placeholder' => 'Describe in 1 or 2 sentences the issue being experienced and the impact it is having.', 'rows' => 3]) !!}
{!! Form::label('feedback_issue_steps', 'What problem is trying to be solved?*') !!} {!! Form::textarea('feedback_issue_steps' , null , ['class' => 'form-control','required'=> true,'placeholder' => 'List the steps that can be taken to reproduce the issue.', 'rows' => 3]) !!}
{!! Form::label('feedback_exp_result', 'Expected Result*') !!} {!! Form::textarea('feedback_exp_result' , null , ['class' => 'form-control','required'=> true,'placeholder' => 'Describe the current results of the steps to reproduce.', 'rows' => 3]) !!}
{!! Form::label('feedback_result', 'Actual Result*') !!} {!! Form::textarea('feedback_result' , null , ['class' => 'form-control','required'=> true,'placeholder' => 'Describe what should happen when you follow the steps to reproduce if this were working as expected.', 'rows' => 3]) !!}