I am looking for the way to bind data in to form with input groups. For exmaple I have these inputs:
Form::text('purchaser[address]');
Form::text('seller[address]');
and I want to bind data from my variable - $purchaser which has a field 'address' and $seller also with field 'address'. I know that forms can be filled using laravel
Form::model
but I can't find example how to use it for input groups. Is there even such a possibility or I have to do it manually?