giftcon_dev/resources/views/web/partials/auth/danal_autosubmit.blade.php
2026-01-26 12:59:59 +09:00

13 lines
336 B
PHP

<!doctype html>
<html lang="ko">
<head><meta charset="utf-8"></head>
<body>
<form id="danalForm" method="post" action="{{ $action }}">
@foreach($fields as $k => $v)
<input type="hidden" name="{{ $k }}" value="{{ $v }}">
@endforeach
</form>
<script>document.getElementById('danalForm').submit();</script>
</body>
</html>