First off, you need to find the Controller which handles this requests, together with it's functions.
You should find a form Validation method (hopefully), and a few other perks.. You should also find the SQL insert/update, so right there you need to add the field you're trying to save/update..
Then, in the view, just use the classic
{{ Form::label('business', 'Business') }}
{{ Form::text('business', Input::old('business')) }}
The following links should be some help
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community