@section('content')

FAQ

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::model($faq, $method) }}
{{ Form::text('question', null, array('id' => 'input-question', 'placeholder' => 'Question', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::textarea('answer', null, array('id' => 'redactor', 'placeholder' => 'Answer', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
Cancel
{{ Form::close() }} @endsection