+
{{ __('Post') }}
@if ($chirp ?? false)
{{ __('Cancel') }}
@endif
diff --git a/source/_bootcamp/hotwiring-everything.md b/source/_bootcamp/hotwiring-everything.md
index b3b44ab..24a0ccc 100644
--- a/source/_bootcamp/hotwiring-everything.md
+++ b/source/_bootcamp/hotwiring-everything.md
@@ -50,7 +50,7 @@ For that to work, we also need to wrap our create form with a matching Turbo Fra
{- @include('chirps.partials.form')-}
-{+
+{+
@include('chirps.partials.form')
+}
@@ -83,7 +83,7 @@ Before we change the `ChirpController`, let's give our list of chirps wrapper el
{{ __('Write a message to the World.') }}
-{- @include('chirps.partials.form')-}
+{- -}
{+
@include('chirps.partials.form')
+}
@@ -177,9 +177,9 @@ Now, let's also update the `chirps.edit` page to add a wrapping Turbo Frame arou
{{ __('Update your Chirp message.') }}
-{- @include('chirps.partials.form')-}
+{- @include('chirps.partials.form', ['chirp' => $chirp])-}
{+
- @include('chirps.partials.form')
+ @include('chirps.partials.form', ['chirp' => $chirp])
+}