mardi 16 avril 2019

TokenMisMatchException in laravel auth (Line 68)

I've installed a fresh laravel 5.8. After that i ran:

 php artisan make:auth

Everything looked fine, but when i'm trying to log in (for example: filling form with incorrect values) im getting "TokenMismatchException in VerifyCsrfToken.php line 68" error.

Im getting these exceptions in every auth forms!

My view (login):

 <form class="form-horizontal" method="POST" action="">

                       


                        <div class="form-group">
                            <label for="email" class="col-md-4 control-label">E-Mail Address</label>

                            <div class="col-md-6">
                                <input id="email" type="email" class="form-control" name="email" value="" required autofocus>

                                @if ($errors->has('email'))
                                    <span class="help-block">
                                        <strong></strong>
                                    </span>
                                @endif
                            </div>
                        </div>

                        <div class="form-group">
                            <label for="password" class="col-md-4 control-label">Password</label>

                            <div class="col-md-6">
                                <input id="password" type="password" class="form-control" name="password" required>

                                @if ($errors->has('password'))
                                    <span class="help-block">
                                        <strong></strong>
                                    </span>
                                @endif
                            </div>
                        </div>

                        <div class="form-group">
                            <div class="col-md-6 col-md-offset-4">
                                <div class="checkbox">
                                    <label>
                                        <input type="checkbox" name="remember" > Remember Me
                                    </label>
                                </div>
                            </div>
                        </div>

                        <div class="form-group">
                            <div class="col-md-8 col-md-offset-4">
                                <button type="submit" class="btn btn-primary">
                                    Login
                                </button>

                                <a class="btn btn-link" href="">
                                    Forgot Your Password?
                                </a>
                            </div>
                        </div>

                    </form>

I don't know how, but laravel crashed itself after artisan command...

Changing from to {!! csrf_field() !!} already tried. Not working...



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire