// ex. using a var in param.
<form action="/apply/{{ $data -> id }}" ...>
// a GET form can't specify the GET params in the action using the
// question mark syntax, as it gets dropped as the form generates the URL from
// its inputs.
// instead you can put a hidden form field
e.g. <input type='hidden' name='paramname' value='paramvalue' />