This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- create.blade.php --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="{{asset('css/app.css')}}"> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/css/bootstrap-datepicker.css" rel="stylesheet"> | |
<script data-src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.5.0/js/bootstrap-datepicker.js"></script> | |
</head> | |
<body> | |
<div class="container"> | |
<h2>Student Information Manager</h2><br/> | |
<form method="post" action="{{url('students')}}" enctype="multipart/form-data"> | |
@csrf | |
<div class="row"> | |
<div class="col-md-4"></div> | |
<div class="form-group col-md-4"> | |
<label for="Name">Name:</label> | |
<input type="text" class="form-control" name="name"> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4"></div> | |
<div class="form-group col-md-4"> | |
<label for="Registration">Registration Number:</label> | |
<input type="text" class="form-control" name="reg_no"> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4"></div> | |
<div class="form-group col-md-4"> | |
<label for="Email">Email:</label> | |
<input type="text" class="form-control" name="email"> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4"></div> | |
<div class="form-group col-md-4"> | |
<label for="School">School:</label> | |
<select name="school"> | |
<option value="Science">Science</option> | |
<option value="Engineering">Engineering</option> | |
<option value="Medicine">Medical Science</option> | |
<option value="Management">Management</option> | |
</select> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4"></div> | |
<div class="form-group col-md-4"> | |
<lable>Department</lable> | |
<select name="department"> | |
<option value="CS">Computer Science</option> | |
<option value="CE">Computer Engineering</option> | |
<option value="ME">Mechanical Engineering</option> | |
<option value="EE">Electrical Engineering</option> | |
<option value="Civil">Civil Engineering</option> | |
</select> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-4"></div> | |
<div class="form-group col-md-4" style="margin-top:60px"> | |
<button type="submit" class="btn btn-success">Submit</button> | |
</div> | |
</div> | |
</form> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment