@extends('admin.template.master') @section('title')

FAQ

@endsection @section('main-content')

Edit

{!! Form::open(['method' => 'PUT', 'url' => '/admin/faqs/' .$faq->id]) !!}
{!! Form::label('Question') !!} {!! Form::text('question', $faq->question, ['class' => 'form-control', 'placeholder' => 'Question']) !!} @if ($errors->has('question')) {!! $errors->first('question') !!}@endif
{!! Form::label('Answer') !!} {!! Form::textarea('answer', $faq->answer, ['class' => 'form-control', 'placeholder' => 'Answer']) !!} @if ($errors->has('answer')) {!! $errors->first('answer') !!}@endif
{!! Form::label('FAQ Position') !!} {!! Form::select('faq_position', $faqPosition, $faq->faq_position, ['class' => 'form-control', 'placeholder' => 'Select offer position', 'id' => 'faq_position']) !!} @if ($errors->has('faq_position')) {!! $errors->first('faq_position') !!}@endif
{!! Form::label('Status') !!} {!! Form::select('is_exist', [1 => 'Active', 0 => 'Inactive'], isset($faq->is_exist) ? $faq->is_exist : null, ['class' => 'form-control', 'id' => 'is_exist']) !!}
{!! Form::close() !!}
@endsection