From af4c0298e9460a5ec033c15e3e61293bf4232754 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Thu, 23 Feb 2023 22:52:25 +0100 Subject: [PATCH] public key editable --- app/Nova/User.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Nova/User.php b/app/Nova/User.php index aaf4a50f..396a3b10 100644 --- a/app/Nova/User.php +++ b/app/Nova/User.php @@ -65,6 +65,12 @@ class User extends Resource ->sortable() ->rules('required', 'max:255'), + Text::make(__('Public Key'), 'public_key') + ->rules('nullable', 'string')->hideFromIndex(), + + Text::make(__('Email'), 'email') + ->rules('nullable', 'string')->hideFromIndex(), + Text::make(__('Lightning Address'), 'lightning_address') ->help(__('for example xy@getalby.com')) ->rules('nullable', 'string'),