Create a Laravel Blade Form with no action

Solution:1

Just do this

{{ Form::open(['url' => '#']) }}

Solution:2

After all, the form builder just helps you generate a form. You don’t have to use it. In your case I’d just write it in plain HTML:

<form action="javascript:void(0)">

To add the csrf token just use:

{{ Form::token() }}