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

Edição da FAQ

Voltar

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

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

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

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

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

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

@endif
@foreach ($palavrasChaves as $chave) {{ $chave }} @endforeach
@endsection