'100%', 'height' => '135px']; public function updatedImage() { $this->validate([ 'image' => 'image|mimes:jpeg,png,gif|max:' . ($this->limit100kb ? '100' : '2048'), // 100KB or 2MB ]); $this->dispatch('imageUploaded', $this->image); } public function render() { return view('livewire.single-upload-image'); } }