Fix file input for mobile

This commit is contained in:
samy
2025-06-16 08:42:13 -10:00
parent 2b93fa0001
commit 64eece8ec2
4 changed files with 36 additions and 11 deletions
@@ -8,10 +8,12 @@
id="{{ $id }}"
name="{{ $name }}"
type="{{ $type }}"
placeholder="{{ $placeholder }}"
@if($placeholder)
placeholder="{{ $placeholder}}"
@endif
@if($required) required @endif
@if($disabled) disabled @endif
@if (! $isLivewire)
@if (! $isLivewire && ! empty($resolvedValue))
value="{{ $resolvedValue }}"
@endif