Skip to content

Commit

Permalink
Merge pull request #190 from stoneshaq/patch-1
Browse files Browse the repository at this point in the history
Update sendForm.blade.php
  • Loading branch information
munafio authored Jun 9, 2022
2 parents 9753ca0 + ea44224 commit b7bfc73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/layouts/sendForm.blade.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div class="messenger-sendCard">
<form id="message-form" method="POST" action="{{ route('send.message') }}" enctype="multipart/form-data">
@csrf
<label><span class="fas fa-paperclip"></span><input disabled='disabled' type="file" class="upload-attachment" name="file" accept="image/*, .txt, .rar, .zip" /></label>
<label><span class="fas fa-paperclip"></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>
<textarea readonly='readonly' name="message" class="m-send app-scroll" placeholder="Type a message.."></textarea>
<button disabled='disabled'><span class="fas fa-paper-plane"></span></button>
</form>
</div>
</div>

0 comments on commit b7bfc73

Please sign in to comment.