Bug fix: php artisan boost:update no longer crashes when composing
this package's guidelines in a consuming app.
Atom's TagCompiler is registered globally by AtomServiceProvider and
rewrites <atom:...> tags wherever Blade processes them — including
inside the Boost guideline file that Boost itself renders as Blade.
The placeholder text <atom:icon.name /> on line 17 of
resources/boost/guidelines/core.blade.php was being rewritten to
<x-atom::icon.name />, throwing InvalidArgumentException because no
such component exists.
Fix: wrap the eight prose blocks containing inline <atom:...> examples
in @verbatim / @endverbatim so the TagCompiler skips them. Markdown
output is unchanged for human readers.
Backport from v3.0.1. This release line targets Laravel 13 + Livewire 3.