Question
{!! Form::textarea('Question', $faq_info->question ?? '', [
'class' => 'form-control',
'placeholder' => 'Question',
'rows' => 3,
'name' => 'question'
]) !!}
{{ $errors->first('question') }}
Answer
{!! Form::textarea('Answer', $faq_info->answer ?? '', [
'class' => 'form-control',
'placeholder' => 'Answer',
'rows' => 8,
'name' => 'answer'
]) !!}
{{ $errors->first('answer') }}
Tags use commas to separate each word. These tags are used to show this FAQ in specific contexts.
{!! Form::textarea('tags', $article_info->tags ?? '', [
'class' => 'form-control',
'placeholder' => 'Keywords (comma separated words)',
'rows' => 2,
'name' => 'tags'
]) !!}
{{ $errors->first('tags') }}