Skip to content

Instantly share code, notes, and snippets.

@ecojuntak
Created February 16, 2020 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecojuntak/f28bdac5b552a515016c0b4aaeb30318 to your computer and use it in GitHub Desktop.
Save ecojuntak/f28bdac5b552a515016c0b4aaeb30318 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Add book</title>
</head>
<body>
<div style="background: #388BF2; font-size: 24px; color: white">
Simple library app
</div>
<div style="margin-top: 20px; margin-bottom: 20px">
<h3> Please fill the book detail </h3>
<div>
<form method="post" action="{{ url("/books") }}">
{{ csrf_field() }}
<div>
<label>
Title
<input name="title"/>
</label>
</div>
<div>
<label>
Publication
<input name="publication"/>
</label>
</div>
<div>
<label>
Author
<input name="author"/>
</label>
</div>
<div>
<label>
Year
<input name="year" type="date"/>
</label>
</div>
<button type="submit"> Add </button>
</form>
</div>
</div>
<div style="background: #31B057; font-size: 20px; color: white">
Created with love and willingness to learn
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment