4👍
✅
You are missing the name
arguments for your input
s. The id
s are only used by CSS and JS. Try using
<input type="text" class="form-control" name="title" id="title" placeholder="Write Title Later" >
instead of
<input type="text" class="form-control" id="title" placeholder="Write Title Later" >
Source:stackexchange.com