image upload support SVG (#150)

This commit is contained in:
formsdev 2023-07-19 13:39:25 +05:30 committed by GitHub
parent 617862a018
commit 1bcd6390f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -22,7 +22,8 @@ class UploadAssetRequest extends FormRequest
'jpeg', 'jpeg',
'jpg', 'jpg',
'bmp', 'bmp',
'gif' 'gif',
'svg'
])], ])],
]; ];
} }

View File

@ -71,7 +71,7 @@
/> />
<div class="relative z-20 text-center"> <div class="relative z-20 text-center">
<input ref="actual-input" class="hidden" type="file" :name="name" <input ref="actual-input" class="hidden" type="file" :name="name"
accept="image/png, image/gif, image/jpeg, image/bmp" @change="manualFileUpload" accept="image/png, image/gif, image/jpeg, image/bmp, image/svg+xml" @change="manualFileUpload"
> >
<svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-24 w-24 text-gray-200" fill="none" <svg xmlns="http://www.w3.org/2000/svg" class="mx-auto h-24 w-24 text-gray-200" fill="none"
viewBox="0 0 24 24" stroke="currentColor" viewBox="0 0 24 24" stroke="currentColor"
@ -91,7 +91,7 @@
or drag and drop or drag and drop
</p> </p>
<p class="mt-1 text-xs text-gray-500"> <p class="mt-1 text-xs text-gray-500">
.jpg, .jpeg, .png, .bmp, .gif up to 5mb .jpg, .jpeg, .png, .bmp, .gif, .svg up to 5mb
</p> </p>
</div> </div>
</template> </template>