You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
446 B
PHTML
18 lines
446 B
PHTML
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Laravel</title>
|
|
<body>
|
|
<form method="POST" action="/test">
|
|
@csrf
|
|
<input type="text" name="name" placeholder="姓名">
|
|
<input name="sfz" placeholder="身份证">
|
|
<button type="submit">查询</button>
|
|
</form>
|
|
</body>
|
|
</head>
|
|
</html>
|