13 lines
336 B
PHP
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>
|