auto fill when i select

i want when i select debtorCompany take data from debtorCompany and fill automaticly in code and email textinput this is my code
Forms\Components\Select::make('debtor_company_id')
                    ->relationship('debtorCompany', 'name')
                    ->label('დებიტორის კომპანიის დასახელება')
                    ->required(),
                Forms\Components\TextInput::make('debtor_identification_code')
                    ->label('დებიტორის საიდენტიფიკაციო კოდი')
                    ->required(),
                Forms\Components\TextInput::make('debtor_email')
                    ->email()
                    ->label('დებიტორი კომპანიის მეილი ')
                    ->required(),
Solution
ok, you didnt mentioned it in the original message 🙂
did you add ->live()?
Was this page helpful?