initial commit

This commit is contained in:
Debian
2026-06-03 04:18:36 +07:00
commit a5569ce2a0
220 changed files with 30797 additions and 0 deletions
@@ -0,0 +1,9 @@
<div class="messenger-sendCard">
<form id="message-form" method="POST" action="{{ route('send.message') }}" enctype="multipart/form-data">
@csrf
<label><span class="fas fa-plus-circle"></span><input disabled='disabled' type="file" class="upload-attachment" name="file" accept=".{{implode(', .',config('chatify.attachments.allowed_images'))}}, .{{implode(', .',config('chatify.attachments.allowed_files'))}}" /></label>
<button class="emoji-button"></span><span class="fas fa-smile"></button>
<textarea readonly='readonly' name="message" class="m-send app-scroll" placeholder="Type a message.."></textarea>
<button disabled='disabled' class="send-button"><span class="fas fa-paper-plane"></span></button>
</form>
</div>