skip to Main Content

When i submit a post form on my page it doesn’t work, it redirects me on the action route with error 419, this is an example of my form:

<form action="{{route('client.login')}}" method="POST">
                    @csrf
                    @method('POST')
                    <h4 class="login-title">Login</h4>
                    <div class="login-form">
                        <div class="row">
                            <div class="col-md-12 col-12 mb--20">
                                <label>Email*</label>
                                <input class="mb-0" type="email" name="email" value="{{ old('email') }}">
                            </div>
                            <div class="col-12 mb--20">
                                <label>Password</label>
                                <input class="mb-0" type="password" autocomplete="current-password" name="password"
                                value="{{ old('password') }}">
                            </div>
                            <div class="col-md-12">
                                <div class="d-flex align-items-center flex-wrap">
                                    <button type="submit" class="btn btn-black me-3">Login</button>
                                    <div class="d-inline-flex align-items-center">
                                        <input type="checkbox" id="remember" name="remember" class="mb-0 me-1">
                                        <label for="remember" class="mb-0 font-weight-400">Ricordami</label>
                                    </div>
                                </div>
                                @if (Route::has('password.request'))
                                <p><a href="{{ route('password.request') }}" class="pass-lost mt-3">Password dimenticata?</a></p>
                                @endif
                            </div>
                        </div>
                    </div>
                </form>

I’ve checked the csrf tokens, and they match.
I’ve the exact same code on my server-side files and they work perfectly, but doesn’t work on my local server.
I can’t find anywhere the log of this error.

EDIT:
My issue was in the .env file, I’ve written a ; rather than a :

2

Answers


  1. Remove @method('POST') this line and try because you don’t need to mention method="POST", you already mentioned method in form tag.
    Welcome you in advance.

    Login or Signup to reply.
  2. Try to add <meta name="csrf-token" content="{{ csrf_token() }}"> in the head of app.blade.php file

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search