@extends('layouts.admin') @section('content')

{{ $article->exists ? 'Edit guide' : 'Create guide' }}

@if($article->exists)
@csrf @method('DELETE')
@endif
@csrf @if($article->exists) @method('PUT') @endif
Auto generates, but can be modified.
@if($article->featured_image)
Current image
{{ $article->title }}
@endif
HTML is allowed here so guides can include images, lists, links, and formatted sections.
exists ? $article->is_published : true))>
Back
@endsection