@extends('themes.default1.admin.layout.kb') @section('content') {!! Form::model($faq,['url' => 'post-create-faq/'.$faq->id, 'method' => 'PATCH','files'=>true]) !!}

Faqs {!! Form::submit('save',['class'=>'form-group btn btn-primary pull-right'])!!}

@if(Session::has('success'))
Success! {{Session::get('success')}}
@endif @if(Session::has('fails'))
Alert! Failed. {{Session::get('fails')}}
@endif
{!! Form::label('faq','Description') !!} {!! $errors->first('faq', ':message') !!} {!! Form::textarea('faq',null,['class' => 'form-control','size' => '30x5','id'=>'faq']) !!}
@stop
@section('FooterInclude') @stop @stop @stop