<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    <form class="" action="process" method="post">
      @csrf
      firstname: <input type="text" name="firstname" value="Warawoot">
      lastname: <input type="text" name="lastname" value="Pacharoen">
      role:
      <select class="" name="role">
        <option value="s">Student</option>
        <option value="t">Teacher</option>
      </select>
      <button type="submit">ลงทะเบียน</button>
    </form>
  </body>
</html>