您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

delete-bank-connection-modal.blade.php 519B

1234567
  1. <span>Are you sure you want to delete your {{ $institution->name }} connection? Deleting this bank connection will remove the following connected accounts:</span>
  2. <ul class="list-disc list-inside p-4">
  3. @foreach($institution->connectedBankAccounts as $connectedBankAccount)
  4. <li>{{ $connectedBankAccount->name }}</li>
  5. @endforeach
  6. </ul>
  7. <span>Deleting this bank connection will stop the import of transactions for all accounts associated with this bank. Existing transactions will remain unchanged.</span>