At present the Form class returns data as: ``` $formData['title'] ``` In Laravel this would be: ``` $request->input('title') ``` Can we review this and make a Laravel request object available to retrieve data from?
At present the Form class returns data as:
In Laravel this would be:
Can we review this and make a Laravel request object available to retrieve data from?