@extends('admin.layouts.app') @section('title', isset($post) ? 'Edit Post' : 'Add Post') @section('content')
← Back

{{ isset($post) ? 'Edit Post' : 'Add New Post' }}

@csrf @if (isset($post)) @method('PUT') @endif
@endsection