rhysleesdev
User maintenance flow - default in Filament
you can customise the form here:
https://filamentphp.com/docs/3.x/panels/users#customizing-the-authentication-features
12 replies
User maintenance flow - default in Filament
@jjo63 filament ships with a user profile page
https://filamentphp.com/docs/3.x/panels/users#authentication-features
enable it with
->profile()
in the Panels Provider12 replies
User maintenance flow - default in Filament
You could use a package like this. it creates a user with a random password and sends them an invite notification with a link to reset the password
https://filamentphp.com/plugins/tapp-network-invites
12 replies
Auto save for forms
@pablopetr you can add the following method to the Pages/Edit{Resource}.php
then add
->live()
to the form elements and when they update it will call this method, then save.
note the propertyName
is passed to the update method, so if you have some other elements you dont want to trigger the save on you can filter them out.8 replies
displaying address in filament form
As @Jo said, there is no content method in View, you should use
->view('path.to.blade.view')
then define your content in the file
https://filamentphp.com/docs/3.x/forms/layout/custom7 replies
Table CSS for Livewire Page outside Filament
include the
@filamentStyles
and @filamentScripts
https://filamentphp.com/docs/3.x/tables/installation#configuring-your-layout12 replies
Registration error
Ensure you have allowed access to the panel on the user model:
https://filamentphp.com/docs/3.x/panels/users#authorizing-access-to-the-panel
3 replies
Table CSS for Livewire Page outside Filament
You should follow all the Installation steps here:
https://filamentphp.com/docs/3.x/tables/installation
12 replies