@extends('admin.layouts.layout') @section('content')

{{ trans('admin_lang.add') }} Faq

{{ Form::open(['route' => [routeFormUser($pagePath . '.store')], 'files' => true, 'class' => 'upload_submit']) }}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Enter Title']) !!} @if ($errors->has('title')) {{ $errors->first('title') }} @endif
{!! Form::select('type', [ 'driver' => 'Driver', 'rider' => 'Rider', ], null, [ 'class' => 'form-control', ]) !!} @if ($errors->has('type'))
{{ $errors->first('type') }} @endif
{!! Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => 'Enter description']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{ Form::close() }}
@endsection