Files
Business-credit-asistant/resources/views/auth/credit_report_modal.blade.php
2026-06-29 13:00:18 +06:00

25 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div id="new-report-modal" class="modal fade in" role="dialog">
<div class="modal-dialog modal-dialog-centered" style="width:70% !important; margin: 0 auto">
<form method="post" action="{{route('upload.report')}}">
@csrf
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" style="margin-bottom: 10px;">New credit report</h4>
</div>
<div class="modal-body">
<textarea placeholder="UPLOAD CREDIT REPORT HTML" class="form-control" name="html_content" rows="10"></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default epic-btn" data-dismiss="modal">Close</button>
<button name="new_process_html" type="submit" class="btn btn-primary btn2">Upload</button>
</div>
</div>
</form>
</div>
</div>
<script>
$('#new-report-modal').modal('show')
</script>