lundi 11 juin 2018

Laravel 5 POST method is not working

My Laravel get method is working but post method is not working.

controller

public function create(Request $request)
{

    if (Request::isMethod('post'))
    {
        echo 'text';
        exit;
    }

}

blade

<form action="" method="POST">
<input name="name" class="form-control" type="text">    
<input name="email" class="form-control" type="email">  
<input type="submit" class="btn btn-primary btn-lg btn-block" name="submit">
</form>

route

Route::post('/create', 'Tools\PostController@create')->name('create');

error

The page has expired due to inactivity. Please refresh and try again.



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2JEDecR
via IFTTT

Aucun commentaire:

Enregistrer un commentaire