Take a look at Form::model http://laravel.com/docs/4.2/html#form-model-binding
You could do
@if(isset($report)) //populate form using $report data
{{Form::model($report, ... }}
@else
{{Form::open(...)}}
@endif
So you need only to open the form in a different way, the rest of the view remains the same.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community