Laravel - Request and Response
Given this Blade form snippet:
What will
<form method="POST" action="/submit"> @csrf <input type="text" name="username" value="John"> <button type="submit">Send</button> </form>
What will
request('username') return in the controller after submission?