@extends('layouts.backend') @section('title', '| faqs create') @section('content') @if($errors->any())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif

Add New faqs

{!! Form::open(['route' => 'faqs.store']) !!}
{{ Form::label('question', 'Question', ['class'=>'form-label']) }} {{ Form::textarea('question', null, array('class' => 'form-control')) }}
{{ Form::label('answer', 'Answer', ['class'=>'form-label']) }} {{ Form::textarea('answer', null, array('class' => 'form-control')) }}
{{ Form::label('status', 'Status', ['class'=>'form-label']) }} {{ Form::select('status', array('yes' => 'Yes', 'no' => 'No'),null,array('class' => 'form-control')) }}
{{ Form::submit('Create', array('class' => 'btn btn-primary')) }} {{ Form::close() }}
@stop