@extends('painel-admin.menu') @section('title', 'Cadastro da FAQ') @section('content')
@if ($errors->any())
@endif @if(session('error'))
{{ session('error') }}
@endif @method('POST') @csrf

Cadastro da FAQ

Voltar

@if ($errors->has('pergunta'))

{{ $errors->first('pergunta') }}

@endif
{{ old('resposta') }}
@if ($errors->has('resposta'))

{{ $errors->first('resposta') }}

@endif
@if ($errors->has('chave'))

{{ $errors->first('chave') }}

@endif
@endsection