To prepare our html to upload images we would need to add input field to our html. <input type=”file” class=”form-control” name=”logo” required (change)=”handleFileInput($event.target.files)” > When file is changed it is going to call a function. We would need to define that function at our component. […]