Skip to content

Commit 5b87266

Browse files
committed
Fix form route binding exception.
1 parent df42bbd commit 5b87266

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Providers/RouteServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ protected function bindForms()
172172
Route::bind('form', function ($handle) {
173173
throw_unless(
174174
$form = Form::find($handle),
175-
new NotFoundHttpException("Form [$form] not found.")
175+
new NotFoundHttpException("Form [$handle] not found.")
176176
);
177177

178178
return $form;

0 commit comments

Comments
 (0)