14-04-2026

This commit is contained in:
Kevin Adametz 2026-04-14 18:07:45 +02:00
parent f58c709945
commit 0f82fea88a
72 changed files with 7414 additions and 148 deletions

View file

@ -210,8 +210,16 @@
@if (\Session::has('errormessage'))
<div class="row">
<div class="col-sm-12">
<div class="alert alert-danger">
{{ \Session::get('customermessage') }}
<div class="alert alert-danger" role="alert">
<h5 class="alert-heading mb-1">
<i class="fa fa-exclamation-circle mr-1"></i>
{{ __('payment.payment_error') }}
</h5>
@if(\Session::get('customermessage'))
<p class="mb-1">{{ \Session::get('customermessage') }}</p>
@endif
<hr class="my-2">
<p class="mb-0 small">{{ __('payment.payment_error_hint') }}</p>
</div>
</div>
</div>