laravellaravelcollective

how to use onclick in LaravelCollective


I am using Laravel Collective form. I want to use onclick analytic.js but the browser shows me an error. here is the code

<div class="field-name">
{{--<%= f.text_field :name, placeholder: 'your name', :onclick => "ga('send','event', 'form-lp-input', 'step3-name', '', 0);" %>--}}
{!!Form::text('name','yes',null,['placeholder'=>'yourname','onclick'=>'ga('send', 'event', 'form-lp-input', 'step2-zip',
 '', 0);'])!!}
</div>

here is the output


Solution

  • There are two problems in your code:

    public static function text($name, $value = null, $options = array())
    

    try this:

    {!!Form::text('name', 'yes', ['placeholder' => 'yourname', 'onclick' => 'ga("send", "event", "form-lp-input", "step2-zip","", 0);'])!!}