Hi Why my csrf token value is null ? And when i don't use token i havent TokenMismatchException!!!! how can i fix it ?

I dug deeper and found that a session is not being registered in SessionServiceProvider. Is there something that needs to be enabled for this to work by default? Since I am a Laravel beginner, I am not sure how to follow the advice above. How do I make sure that my routes are added under the "web" group?
<form method="post" action="<?php echo url('/form'); ?>">
<input type="hidden" name="_Token" value="{{ csrf_token() }}">
<input type="text" name="Title" placeholder="Title"><br>
<textarea rows="10" name="Content" placeholder="Content"></textarea><br>
<input type="submit" value="Send">
</form>
your-page.blade.php?value="<?php echo csrf_token(); ?>"_tokenfield. Laravel add a_tokenby itself if not exist in a form.csfr fieldLaravel adds one. So you always have acsrf fieldin your form. I don't addcsrfby myself, but when I inspect my code there is always acsfr fieldexist.