<%= @bank.name %> – <%= @bank.branch %>

Branch Code
<%= @bank.branch_code %>
Account Name
<%= @bank.account_name %>
Account Number
<%= @bank.account_number %>
Currency
<%= @bank.currency %>
TR Code
<%= @bank.tr_code.presence || "—" %>
Contra Credit
<%= @bank.contra_credit.presence || "—" %>
Contra Debit
<%= @bank.contra_debit.presence || "—" %>
Status
<% if @bank.active? %> Active <% else %> Inactive <% end %>
<%= link_to '← Back', admin_portal_banks_path, class: 'btn btn-light border rounded-pill px-4' %>
<%= link_to 'Edit', edit_admin_portal_bank_path(@bank), class: 'btn btn-dark rounded-pill px-4 me-2' %> <%= link_to 'Delete', admin_portal_bank_path(@bank), method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger rounded-pill px-4' %>