Route that displays a page with form?

How can I add a route that just displays a form - I think I'm very confused and doing this backwards. In fact one of my forms shows the form at the top and the HTML for the page at the bottom . . .it renders, but not well. Thoughts?

Route::get('/app_form', function () {


return view('application_form');
})->name('business.send');
Was this page helpful?