@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content')
FAQ

Create FAQ Questions

{!! Form::open(['action' => 'FAQController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','autocomplete'=>'off','data-parsley-validate']) !!}
{{Form::label('usertypeId', 'User Module', ['class'=>'required col-md-2'])}}
{{Form::select('moduleId', $userTypes, null, ['placeholder' => 'Pick a Module...', 'id'=>'usertypeId', 'readonly','required'])}}
{{Form::label('question', 'Question', ['class'=>'required col-md-2'])}}
{{Form::label('answer', 'Answer', ['class'=>'col-md-2'])}}
{{Form::label('remark', 'Remark', ['class'=>'col-md-2'])}}
{{ Form::button(' Save', ['class' => 'btn btn-primary', 'type' => 'submit']) }} {{ Form::button(' Reset', ['class' => 'btn btn-danger', 'type' => 'reset']) }}
{!! Form::close() !!}
@endsection