form does not access the route created in the Laravel

Asked

Viewed 65 times

1

I have a ready form that I am trying to incorporate into a 5.2 Standard System

<form name="formEireli" id="formEireli" action="{{ url('script') }}"  target="_blank" method="post">

is in the eireli/index.blade.php view, and eireli/script.php I try to access from the route:

Route::get('eireli.script', ['uses'=>'EireliController@eireli','as'=>'script']);

accessing the eireli function of the Eirelicontroller

class EireliController extends Controller
{
    public function eireli()
    {
        return view('eireli.script');
    }
}

but it’s not working, and I’m not getting the error that appears

inserir a descrição da imagem aqui

any personal light? thanks in advance..

1 answer

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.