feat: add SWIFT code field to bank accounts and update card UI for improved copy functionality and layout responsiveness.

This commit is contained in:
Ümit Tunç
2026-05-29 07:18:26 +03:00
parent b7ef2450bd
commit 1ef535d132
2 changed files with 342 additions and 33 deletions
@@ -47,8 +47,14 @@ class BankAccountsSection
'GBP' => 'Sterlin (£)',
])
->default('TRY')
->live()
->required(),
TextInput::make('swift_code')
->label('SWIFT / BIC')
->placeholder('Örn: TRHBTR2A')
->required(fn (Get $get): bool => $get('currency') !== 'TRY'),
FileUpload::make('logo')
->label('Banka Logosu')
->image()