1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/portal/ninja2020/gateways/unsuccessful.blade.php
2020-09-11 08:30:12 +10:00

16 lines
426 B
PHP

@extends('portal.ninja2020.layout.app')
@section('meta_title', ctrans('texts.error_title'))
@section('body')
<span class="text-center text-xl text-center">
{{ ctrans('texts.payment_error_code', ['code' => isset($code) ? $code : '']) }}
</span>
@if($message)
<span class="mt-6 block">{{ ctrans('texts.message') }}:</span>
<ul>
<li>{{ $message }}.</li>
</ul>
@endif
@endsection