<% if Sms.enabled_for?(current_account) %>
<% if submitter.phone.present? %>
<%= button_to submitter_send_sms_path(submitter_id: submitter.id),
method: :post,
class: 'btn btn-sm btn-primary w-full',
data: { turbo_confirm: submitter.sent_at? ? t('are_you_sure_') : nil } do %>
<%= submitter.sent_at? ? t('re_send_sms') : t('send_sms') %>
<% end %>
<% else %>
<% end %>
<% else %>
<% end %>