{!! Form::repeater('faq_schema_config', $value, [ [ 'type' => 'textarea', 'label' => trans('plugins/faq::faq.question'), 'required' => true, 'attributes' => [ 'name' => 'question', 'value' => null, 'options' => [ 'class' => 'form-control', 'data-counter' => 1000, 'rows' => 1, ], ], ], [ 'type' => 'textarea', 'label' => trans('plugins/faq::faq.answer'), 'required' => true, 'attributes' => [ 'name' => 'answer', 'value' => null, 'options' => [ 'class' => 'form-control', 'data-counter' => 1000, 'rows' => 1, ], ], ], ]) !!}
{{ trans('plugins/faq::faq.or') }} {{ trans('plugins/faq::faq.select_from_existing') }}
empty($selectedFaqs) || ! $faqs])> @if($faqs) {{ Form::multiChecklist('selected_existing_faqs[]', $selectedFaqs, $faqs, [], false, false, true) }} @else

{!! BaseHelper::clean(trans( 'plugins/faq::faq.no_existing', ['link' => Html::link(route('faq.create'), trans('plugins/faq::faq.faqs_menu_name'), ['target' => '_blank'])]) ) !!}

@endif