mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
34 lines
1.6 KiB
PHP
34 lines
1.6 KiB
PHP
|
<div class="container mx-auto grid grid-cols-12" data-ref="required-fields-container">
|
||
|
<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">
|
||
|
{{ ctrans('texts.required_payment_information') }}
|
||
|
</h3>
|
||
|
|
||
|
<p class="max-w-2xl mt-1 text-sm leading-5 text-gray-500">
|
||
|
{{ ctrans('texts.required_payment_information_more') }}
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<form wire:submit.prevent="handleSubmit(Object.fromEntries(new FormData($event.target)))">
|
||
|
@foreach($fields as $field)
|
||
|
@component('portal.ninja2020.components.general.card-element', ['title' => $field['label']])
|
||
|
<input class="input w-full" type="{{ $field['type'] }}" name="{{ $field['name'] }}">
|
||
|
|
||
|
@if(session()->has('validation_errors') && array_key_exists($field['name'], session('validation_errors')))
|
||
|
<p class="mt-2 text-gray-900 border-red-300 px-2 py-1 bg-gray-100">{{ session('validation_errors')[$field['name']][0] }}</p>
|
||
|
@endif
|
||
|
@endcomponent
|
||
|
@endforeach
|
||
|
|
||
|
@component('portal.ninja2020.components.general.card-element-single')
|
||
|
<div class="flex justify-end">
|
||
|
<button class="button button-primary bg-primary">
|
||
|
{{ trans('texts.next_step') }}
|
||
|
</button>
|
||
|
</div>
|
||
|
@endcomponent
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|