Last active
June 18, 2020 22:40
-
-
Save NandoKstroNet/be8b15b547d1458c273ddb50b76182c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group"> | |
<label>Fotos do Produto</label> | |
<input type="file" name="photos[]" class="form-control @error('photos.*') is-invalid @enderror" multiple> | |
@error('photos.*') | |
<div class="invalid-feedback"> | |
{{$message}} | |
</div> | |
@enderror | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment