My Form:
<form is="iron-form" action="{{url('/user/store')}}" id="registerForm" method="POST">
<input type="hidden" name="_token" value="{{csrf_token()}}">
<paper-input name="email" label="E-mail" type="email"></paper-input>
<paper-input name="password" label="password" type="password"></paper-input>
<paper-button raised onclick="submitLRForm(event);">Submit form</paper-button>
</form>
In Google Chrome, the form data is sent via AJAX, while in Firefox, it redirects to /user/store
.
I would appreciate any assistance.
Thank you, G3