11 lines
580 B
PHP
11 lines
580 B
PHP
<!-- resources/views/signatures/components/signature-pad.blade.php -->
|
|
<div class="text-center border">
|
|
<h3 class="signature-title">{{ ucfirst($type) }}</h3>
|
|
<canvas id="signature-pad-{{ $type }}" class="signature-pad" width="400" height="200"></canvas>
|
|
<div class="button-container py-2">
|
|
<button type="button" id="save-{{ $type }}" class="btn btn-xs btn-primary">Simpan</button>
|
|
<button type="button" id="clear-{{ $type }}" class="btn btn-xs btn-danger">Hapus</button>
|
|
</div>
|
|
<div id="status-{{ $type }}" class="status-message"></div>
|
|
</div>
|