{!! Form::label('product', 'Product:') !!}

{{ $data['review']->product->name }}

{!! Form::label('name', 'Name:') !!} {!! Form::text('name', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter name ...']) !!}
{!! Form::label('email', 'Email:') !!} {!! Form::text('email', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter email ...']) !!}
{!! Form::label('mobile', 'Mobile:') !!} {!! Form::text('mobile', null,['class'=>'form-control', 'placeholder'=>'Enter mobile ...']) !!}
{!! Form::label('comments', 'Comments:') !!} {!! Form::textarea('comments', null,['class'=>'form-control', 'required', 'placeholder'=>'Enter comments ...']) !!}
{!! Form::label('rating', 'Rating:') !!} {!! Form::select('rating', [1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5'], null, ['class'=>'form-control', 'required', 'placeholder'=>'Select rating ...']) !!}
{!! Form::label('status', 'Status:') !!}