skip to Main Content

Laravel form not sending IDs

ID input <input class="form-control" type="hidden" value="{{ Auth()->user()->id }}"> After dump "_token" => "BP0ejzEjoIjFyUonjdMFNAyoRDcYCr4k7nec5czI" "name" => "Mark" "surname" => "Johanessburg" "number" => "8281992832" "email" => "[email protected]" So I'm trying to send the user's ID through the form. But when I clicked…

VIEW QUESTION

$_POST variables empty after send with jquery ajax

This form was working till jan/24. Now, all variables are empty on my $_POST. Here is my code: HTML: <form id="main-schedule-form" name="schedule-form" method="post" action="sendemailschedule.php"> <label for="nome">Nome*</label> <input type="text" class="form-control" id="nome" name="name" required/> <label for="email">E-mail*</label> <input type="email" class="form-control" id="email" name="email" required/>…

VIEW QUESTION
Back To Top
Search