@extends('layouts.partials.master') @section('title', 'Criar nova FAQ') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar nova FAQ']) Voltar
@csrf @method('POST')
@if ($errors->has('question'))
{{ $errors->first('question') }}
@endif
@if ($errors->has('answer'))
{{ $errors->first('answer') }}
@endif
@if (!\App\Helpers\ModuleHelper::isModuleActive('module_automatic_translations')) @include('layouts.components.translation-create') @endif
@endsection