@extends('layouts.master') @section('title') {{ __('question') }} @endsection @section('content')

{{ __('create') . ' ' . __('faqs') . ' ' . __('question') }}

{!! Form::textarea('question', null, ['required', 'placeholder' => __('question'), 'class' => 'form-control', 'id' => 'question', 'rows' => 1]) !!}
{!! Form::textarea('answer', null, ['required', 'placeholder' => __('answer'), 'class' => 'form-control', 'id' => 'answer', 'rows' => 4]) !!}

{{ __('list'). ' ' . __('faqs') . ' ' . __('question') }}

{{ __('id') }} {{ __('no.') }} {{ __('question') }} {{ __('answer') }} {{ __('status') }} {{ __('created_at') }} {{ __('updated_at') }} {{ __('action') }}
@endsection @section('script') @endsection