@extends('layouts.admin') @section('title', 'Edit FAQ') @section('content')

Edit FAQ

@csrf @method('PUT')
@error('question')
{{ $message }}
@enderror
@error('answer')
{{ $message }}
@enderror You can use basic HTML tags for formatting.
@error('category')
{{ $message }}
@enderror Or enter a new category
@error('order')
{{ $message }}
@enderror Lower numbers appear first.
is_published) ? 'checked' : '' }}>
FAQ Information

Created: {{ $faq->created_at->format('M j, Y g:i A') }}

Updated: {{ $faq->updated_at->format('M j, Y g:i A') }}

Status: @if($faq->is_published) Published @else Draft @endif

Cancel
@endsection