First, we create a simple HTML form to Fill data. See the below code:-
@if($errors->any()) /* This | |
@foreach($errors->all() as $error) area is | |
{{ $error }}<br> to print | |
@endforeach message in | |
@endif the form */ | |
<form method="post" action="submitmyform"> | |
{{ csrf_field()}} // csrf token | |
<p> | |
<label>Name</label> | |
<input type="text" name="name" value="{{ old("name")}}"/> | |
</p> | |
<p> | |
<label>Email</label> | |
<input type="text" name="email" value="{{ old("email")}}"/> | |
</p> | |
<p> | |
<label>Age</label> | |
<input type="text" name="age" value="{{ old("age")}}"/> | |
</p> | |
<p> | |
<input type="submit" name="Submit"> | |
</p> | |
</form> |
Now, we make a controller in which we make two functions, the first one is for fill form and the second one is to submit the form. See the below code:-
// myform Function Starts | |
public function myform() | |
{ | |
return view("form.myform"); | |
} | |
// submitmyform Function Starts | |
public function submitmyform(Request $request) | |
{ | |
// validation starts | |
$this->validate($request,[ | |
"name"=>"required", | |
"email"=>"required|email|min:8|", | |
"age"=>"required" | |
],[ | |
"name.required"=>"Name Should be filled", | |
"email.min"=>" Email length should be more than 8", | |
"email.email"=>"Enter a Valid E-mail" | |
]); | |
// validation ends | |
//Database insertion code starts | |
$name = $request->input('name'); | |
$email = $request->input('email'); | |
$age = $request->input('age'); | |
$data=array('name'=>$name,"email"=>$email,"age"=>$age); | |
DB::table('student_datas')->insert($data); | |
//Database insertion code ends | |
die("Form Submitted"); | |
} |
Now configure the route and run the code.
Now, see the output below:-




With MotoShare.in, you can book a bike instantly, enjoy doorstep delivery, and ride without worries. Perfect for travelers, professionals, and adventure enthusiasts looking for a seamless mobility solution.