5 Replies
My problem is to customise the view part of login this one I know and worked but the view part when I override with the view that I have doesn't work.
Yes you... create a your new login component which will create Class and view file. In view file you can create your own design. In Panel config you can pass as ->Login(YourCustomLogin::class). Create 'YourCustomLogin' livewire component. If you would like add or change or extend the login behaviour create your custom authentication middleware. And replace ->Authenticate() with your ->CustomAuthenticate()
You can override the view file on your custom Login Livewire component
Thanks a lot!
Thanks @Dennis Koch