MEthod Post in my Login Blade

Hi, I created my own login class, and then a new view,to change the layout,the problem is now that when I submit is sending a POST request, don't know how. If I don't change the $view It works, so the problem is there someplace:
image.png
image.png
Solution
If you change your blade like core, is it working?
<x-filament-panels::page.simple> // wrap all data inside this
    
    // ...

    <x-filament-panels::form wire:submit="authenticate">
        {{ $this->form }}

        <x-filament-panels::form.actions :actions="$this->getCachedFormActions()" :full-width="$this->hasFullWidthFormActions()" />
    </x-filament-panels::form>

    //...

</x-filament-panels::page.simple>

But this has nothing to do IMO
Was this page helpful?