LD
<input type="file" name="image" class="custom-file-input" id="image">
Но после отправки данных через аякс я не получаю данных по нему, по другим все нормально
$('#Update_photo').on('submit',function(event){
event.preventDefault();
let route = $(this).data('route');
let data = $(this).serializeArray();
$.ajax({
url: route,
type:"PUT",
data: data,


