skip to Main Content

issues with Laravel9 Search form

I am trying to add a search form to my application. I thought I had everything right, but Laravel keeps on telling undefined $users in the view. The Form Below <form action="{{URL::to('/students')}}" method="post"> @csrf <div class="my-3"> <div class="input-group"> <input type="search"…

VIEW QUESTION

form making with using laravel

I need to display this information on a different page by getting 4 different information from the user (for example: name, surname, phone number and email) and I need to do this with laravel <form method="POST" action="/register"> @csrf <label for="name">Name:</label>…

VIEW QUESTION
Back To Top
Search