1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/portal/ninja2020/layout/payments.blade.php
2020-10-19 23:02:18 +02:00

36 lines
1017 B
PHP

@extends('portal.ninja2020.layout.app')
@isset($gateway_title)
@section('meta_title', $gateway_title)
@else
@section('meta_title', ctrans('texts.pay_now'))
@endisset
@push('head')
@yield('gateway_head')
@endpush
@section('body')
<div class="container mx-auto grid grid-cols-12">
<div class="col-span-12 lg:col-span-6 lg:col-start-4 overflow-hidden bg-white shadow rounded-lg">
<div class="px-4 py-5 border-b border-gray-200 sm:px-6">
<h3 class="text-lg font-medium leading-6 text-gray-900">
{{ $card_title }}
</h3>
<p class="max-w-2xl mt-1 text-sm leading-5 text-gray-500">
@isset($card_description)
{{ $card_description }}
@endisset
</p>
</div>
<div>
@yield('gateway_content')
</div>
</div>
</div>
@endsection
@push('footer')
@yield('gateway_footer')
@endpush