@extends('layouts.backend.master') @section('content')

Create Question Control Panel Manage Questions

Create Question

{!! Form::open(['url' => '/backend/questions/save', 'class' => '', 'role' => 'form', 'files' => true]) !!}
{!! Form::label('typeId', 'Question Type', ['class' => 'control-label']) !!} {!! Form::select('typeId', $questiontype_array, null, ['class' => 'form-control', 'id'=> 'typeId', 'autofocus']) !!} {{ $errors->first('typeId') }}
@include('backend.questions.form_'.$question_type, ['questioncat_array' => $questioncat_array])
{!! Form::close() !!}
@endsection