Action::make(name: 'editProfile')
->slideOver()
->label(__(key: 'actions.edit_profile'))
->modalHeading(heading: fn () => __(key: 'actions.edit_profile_for', replace: ['name' => Auth::user()->full_name]))
->icon(icon: Heroicon::Identification)
->fillForm(data: fn() => Auth::user()->toArray())
->schema(UserResource::getFormSchema(includeRoles: false))
Action::make(name: 'editProfile')
->slideOver()
->label(__(key: 'actions.edit_profile'))
->modalHeading(heading: fn () => __(key: 'actions.edit_profile_for', replace: ['name' => Auth::user()->full_name]))
->icon(icon: Heroicon::Identification)
->fillForm(data: fn() => Auth::user()->toArray())
->schema(UserResource::getFormSchema(includeRoles: false))