@extends('layouts.main') @push('styles') @endpush @section('content')
{{ __('frequently_asked_questions.export_csv') }}
{{ Form::open(['route' => 'frequently_asked_questions.bulk_update','data-toggle'=>'validator']) }}| # | {{ __('frequently_asked_questions.question') }} | {{ __('frequently_asked_questions.module_category') }} | {{ __('frequently_asked_questions.answered') }} |
|---|---|---|---|
| # | {{ __('frequently_asked_questions.question') }} | {{ __('frequently_asked_questions.module_category') }} | {{ __('frequently_asked_questions.answered') }} |
| {{ $count }}. | {{ Form::text('question[]', $question->question,['class'=>'form-control compulsory', 'required']) }} | {{ Form::select('module_id[]', $modules, $question->module_id, ['class'=>'form-control select'])}} | {{ Form::textarea('answers[]', $question->answer,['class'=>'form-control', 'rows'=>'5']) }} |