0
As far as I know, it is not possible to edit it, but there are some alternatives example...
Substitute for label
.
input[type="file"] {
display: none;
}
.btnPerson {
padding: 10px;
line-height: 50px;
text-align: center;
background-color: gray;
}
<label for="teste" class="btnPerson">Escolha um arquivo</label>
<input type="file" id="teste">
However, the result of the image name can only be done through javascript.
Another alternative is to use a ready, I’ve used this one Input file tutorialzine, and recommend.
Take a look at this link
– NoobSaibot