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') }}
Priority
{!! Form::number('priority', $faq_info->priority ?? 0, ['id' => 'priority', 'class' => '']) !!}
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') }}
{{Form::hidden('live', 0)}} {!! Form::checkbox('live', 1, $faq_info->live ?? 0, ['id' => 'live', 'class' => 'p-0']) !!}
{!! Form::label('live', 'Tick to show on website') !!}