Below is the code and link from livewire documentation. You can adjust the @if ($photo) and add @else to show default image.
[
`<form wire:submit="save">
@if ($photo)
<img src="{{ $photo->temporaryUrl() }}">
@endif
<input type="file" wire:model="photo">
@error('photo') <span class="error">{{ $message }}</span> @enderror
<button type="submit">Save photo</button>
</form>`
]1