2021-05-10 13:17:46 +02:00
|
|
|
<form action="{{ route('client.quotes.bulk') }}" method="post" id="approve-form" />
|
2021-01-14 13:29:46 +01:00
|
|
|
@csrf
|
|
|
|
<input type="hidden" name="action" value="approve">
|
2021-02-17 11:39:22 +01:00
|
|
|
<input type="hidden" name="process" value="true">
|
2021-01-14 13:29:46 +01:00
|
|
|
<input type="hidden" name="quotes[]" value="{{ $quote->hashed_id }}">
|
2021-05-10 13:17:46 +02:00
|
|
|
<input type="hidden" name="signature">
|
2021-01-14 13:29:46 +01:00
|
|
|
|
|
|
|
<div class="bg-white shadow sm:rounded-lg">
|
|
|
|
<div class="px-4 py-5 sm:p-6">
|
|
|
|
<div class="sm:flex sm:items-start sm:justify-between">
|
2021-03-02 16:29:24 +01:00
|
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
2021-03-31 00:58:50 +02:00
|
|
|
{{ ctrans('texts.approve') }}
|
2021-03-02 16:29:24 +01:00
|
|
|
</h3>
|
2021-01-14 13:29:46 +01:00
|
|
|
|
|
|
|
<div class="mt-5 sm:mt-0 sm:ml-6 sm:flex-shrink-0 sm:flex sm:items-center">
|
|
|
|
@yield('quote-not-approved-right-side')
|
|
|
|
|
|
|
|
<div class="inline-flex rounded-md shadow-sm">
|
|
|
|
<input type="hidden" name="action" value="payment">
|
2021-05-10 13:17:46 +02:00
|
|
|
<button type="button" class="button button-primary bg-primary" id="approve-button">{{ ctrans('texts.approve') }}</button>
|
2021-01-14 13:29:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2021-05-10 13:17:46 +02:00
|
|
|
|