@extends('layouts.app') @section('title', isset($article) ? 'Edit Knowledge Note' : 'Create Knowledge Note') @section('content')

{{ isset($article) ? 'Edit' : 'Create' }} Knowledge Note

@csrf @if(isset($article)) @method('PUT') @endif
Supports HTML content for rich documentation.
@endsection