From 15af1edb8f3c4b89202a0543e1f02dece6b62d35 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 7 Aug 2025 09:20:53 +0530 Subject: [PATCH] Rename identification fields to Aadhar Number and PAN Number for clarity --- app/Filament/Resources/GuardNameResource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Filament/Resources/GuardNameResource.php b/app/Filament/Resources/GuardNameResource.php index fd80f3577..e39c571c5 100644 --- a/app/Filament/Resources/GuardNameResource.php +++ b/app/Filament/Resources/GuardNameResource.php @@ -73,14 +73,14 @@ class GuardNameResource extends Resource ->ignore($get('id')); }), Forms\Components\TextInput::make('identification1') - ->label('Identification-1') + ->label('Aadhar Number') ->required() ->reactive() ->afterStateUpdated(function ($state, callable $set, callable $get) { $set('created_by', Filament::auth()->user()?->name); }), Forms\Components\TextInput::make('identification2') - ->label('Identification-2') + ->label('PAN Number') ->reactive() ->afterStateUpdated(function ($state, callable $set, callable $get) { $set('created_by', Filament::auth()->user()?->name);