inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<div class="modal fade" id="support_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
<div class="modal-dialog modal-md" id="modal-dialog-panel">
<div class="modal-content">
<form method="post" action="{{route('create.client.support')}}" id="support_form"
autocomplete="off"
class="input-form-section">
@csrf
<div class="modal-header">
<h4 class="mb-2 text-center font-bold pull-left" >Support: </h4>
<button type="button" class="close pull-right" data-dismiss="modal">&times;</button>
</div>
<div class="modal-body">
<div class="row modal-style" >
<p class="mb-1 text-justify">Please Only submit Technical Issues, we do not handle credit repair questions, or how to create letters specifically. We can only help with the technical issue within the software when things are not working corretly. Please send all other questions to Admin at Credit Zombies. </p>
<p class="mb-2 text-left" >Thank you </p>
</div>
<div class="row">
<div class="form-group">
<input type="text" class="form-control" id="support_title" name="support_title" placeholder="Title" ></input>
</div>
<div class="form-group">
<textarea rows="4" cols="50" class="form-control" id="support_text" name="support_text" placeholder="Please write what is your problem or needs" ></textarea>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn2 pull-right" >Click For Technical Support Only</button>
</div>
</form>
</div>
</div>
</div>