Frequently Asked Questions
{!! $pages->fldPagesDescription !!}
{!! $pages->fldPagesDescription2 !!}
{!! Form::open(array('url' => '/faq', 'method' => 'post', 'class' => 'row-fluid input-100 bill-info')); !!}
@if(isset($error))
{!! Form::close() !!}
{!! $error !!}
@endif
@if(Session::has('success'))
{!! Session::get('success') !!}
@endif
{!! Form::label('email', '* Email Address',array( )); !!}
{!! Form::email('email',"",array('id'=>'email','required','class'=>'form-control')) !!}
@if ($errors->has('email'))
{!! $errors->first('email') !!}
@endif
{!! Form::label('question', '* Question',array( )); !!}
{!! Form::textarea('question',"",array('id'=>'message','required','class'=>'form-control text')) !!}
{!! Form::submit('Send',array('name'=>'send','class'=>'uk-button uk-button-primary uk-max-width'))!!}