1) у вас в форме должно отправиться _token
<form action="javascript:void(null)" id="form" onsubmit="followPrice(this)" enctype="multipart/form-data" method="post">
{{ csrf_field() }}
<input type="text" class="form-control" name="title" placeholder="Название"><br>
<textarea class="form-control" rows="7" name="message" placeholder="Текст"></textarea><br>
<input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
<!-- <label for="inputFile">Картинка: </label>
<input type="file" id="inputFile" ng-model="newData.image"><br> -->
<input type="submit" class="btn btn-primary" value="Добавить">
</form>
потом в JS получаешь форму так:
<code lang="javascript">
function followPrice(form) {
var data = $(form).serialize();
$(form).find(".errors").html("");
$.ajax({
method: "POST",
url: "/api/ajax/follow-price",
data: data,
</code>