03-07-2018, 12:49 PM
You are missing your CSRF token in your form.
<input type="hidden" name="csrf" value="<?=Token::generate()?>" />
If you have that already-you probably are generating the token more than one time.
<input type="hidden" name="csrf" value="<?=Token::generate()?>" />
If you have that already-you probably are generating the token more than one time.