@extends('layouts.master') @section('title',__('Create FAQ')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create FAQ')}}
{!! Form::open(['method' => 'POST', 'action' => 'FaqController@store']) !!}
{!! Form::label('question', __('Faq Question')) !!} {!! Form::text('question', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Please Enter Your Faq Question')]) !!} {{ $errors->first('question') }}
{!! Form::label('answer', __('Faq Answer')) !!} {!! Form::textarea('answer', null, ['class' => 'form-control materialize-textarea', 'rows' => '5', 'placeholder' => __('Please Enter Your Faq Answer')]) !!} {{ $errors->first('answer') }}
{!! Form::close() !!}
@endsection @section('script') @endsection