@extends('layouts.master') @section('title',__('Edit FAQ')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit FAQ')}}
{{ csrf_field() }}
{!! Form::label('question', __('Faq Question')) !!} {!! Form::text('question', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('question') }}
{!! Form::label('answer', __('FaqAnswer')) !!} {!! Form::textarea('answer', null, ['class' => 'form-control materialize-textarea', 'rows' => '5']) !!} {{ $errors->first('answer') }}
@endsection @section('script') @endsection