UNDEfined index: image [file] hatası alıyorum kod yapısı;

<div class="row">
<div class="col-md-12">
<label style="font-size: 15px">Kampanya Resmi</label> <small>(Min: 343x219)</small>
<input type='file' name='img' class="form-control" />
</div>
</div>
$image = new Upload($_FILES['img']);
$image->file_new_name_body = 'test';
$image->image_convert = 'jpg';
$image->image_resize = true;
$image->image_ratio_crop = true;
$image->image_x = 800;
$image->image_y = 1000;
$image->jpeg_quality = 35;
$image->allowed = array ( 'image/*' );
$image->Process( '../uploads/campaigns' );
$refimgyol = $image->file_dst_path . $image->file_dst_name;