mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
16 lines
426 B
PHP
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
|