部分视图上的reCaptcha Laravel 4

I am trying to implement reCaptcha on my old Laravel application. It is in Laravel4. I am trying with this bundle. The problem is that the captcha is not rendering to the when I am calling it on the partial view. Is there any quick solution? Help appreciated.

That bundle specifies that it is for the server side validation only. It doesn't offer anything to render the recaptcha, so you still need to follow Google's code for rendering to the client. What code are you using to render to the client?

The original question stated Laravel 3. If you are actually on Laravel 4 as the edit states, I would suggest using the greggilbert/recaptcha package, as it offers both the server side validation and the client side rendering.