Created
November 18, 2015 10:04
-
-
Save adilshahzad/45554b306f58e3d7be5f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!-- New Task Form --> | |
<form action="/task" method="POST" class="form-horizontal"> | |
{{ csrf_field() }} | |
<!-- Task Name --> | |
<div class="form-group"> | |
<label for="task" class="col-sm-3 control-label">Task</label> | |
<div class="col-sm-4"> | |
<input type="text" name="name" id="task-name" class="form-control"> | |
</div> | |
</div> | |
<!-- Add Task Button --> | |
<div class="form-group"> | |
<div class="col-sm-offset-3 col-sm-4"> | |
<button type="submit" class="btn btn-primary"> | |
<i class="fa fa-plus"></i> Add Task | |
</button> | |
</div> | |
</div> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment