<style>
.imgpreview{ width:50px!important; height:50px;}
.notess{ color: red; font-size: 9px; }
</style>
<label for="lname">
<img id="ppath" class="imgpreview" src="#" alt="*" />
Business Photo [ Max 1 MB ]</label>
<input type="file" name="path" id="path" required="">
<script>
$(document).ready(function(){
/* photo 0 */
path.onchange = evt => {
const [file] = path.files
if (file) {
ppath.src = URL.createObjectURL(file)
}
}
/* photo 0 */
});
</script>