25 lines
604 B
PHP
25 lines
604 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
@if(Session::has('success'))
|
|
<div class="alert alert-success">
|
|
{{Session::get('success')}}
|
|
</div>
|
|
@endif
|
|
<div>
|
|
<form method="post" action="./">
|
|
<input type="text" name="name">
|
|
<textarea name="description" id="" cols="30" rows="10"></textarea>
|
|
<input type="submit">
|
|
@csrf
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|