@if($errors->count()) @endif
{{-- photo upload --}}
{!! Form::label('question_sw', 'Question swahili *') !!} {!! Form::text('question_sw',null,['class'=>'form-control']) !!}
{!! Form::label('question_en', 'Question English *') !!} {!! Form::text('question_en',null,['class'=>'form-control']) !!}
{!! Form::label('answer_sw', 'Swahili answer') !!} {!! Form::textarea('answer_sw', null, ['id' => 'redactor_sw', 'class' => 'form-control']) !!}
{!! Form::label('answer_en', 'English answer') !!} {!! Form::textarea('answer_en', null, ['id' => 'redactor_en', 'class' => 'form-control']) !!}
{{--
{!! Form::label('specials', 'Special Page [Option]') !!} {!! Form::select('specials', ['' => 'Select Special Page','list'=>$specials], null, array('class' => 'form-control')) !!}
--}}
{!! Form::label('active', 'Status') !!} {!! Form::select('active', array('1' => 'Active','0'=>'Inactive'),null,['class'=>'form-control']) !!}
{!! Form::submit($submitButton, ['class' => 'btn btn-primary col-md-12']) !!}