Last active
June 26, 2021 20:11
-
-
Save minons1/55221038e5fbd771e4ef032766eb6996 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
<!-- Add Story button --> | |
<div data-toggle="tooltip" data-placement="top" title="Add New Story"> | |
<p type="button" data-toggle="modal" data-target="#addModal" class="float"> | |
<i class="fa fa-plus my-float"></i> | |
</p> | |
</div> | |
<!-- Add Story Modal --> | |
<div class="modal fade" id="addModal" tabindex="-1" role="dialog" aria-labelledby="addModalLabel" aria-hidden="true"> | |
<div class="modal-dialog" role="document"> | |
<div class="modal-content"> | |
<form method="post" action="/blog/store" > | |
<?= csrf_field(); ?> | |
<div class="card custom-card"> | |
<div class="card-body"> | |
<h5 class="card-title"> | |
<div class="form-group"> | |
<label >Add New Story</label> | |
<input name="blog_title" type="text" class="form-control" id="formGroupAddInput" placeholder="Title"> | |
</div> | |
</h5> | |
<p class="card-text"> | |
<div class="form-group"> | |
<textarea rows="10" cols="100" name="blog_description" class="form-control" id="formGroupAddInput2" placeholder="The Story ..."></textarea> | |
</div> | |
</p> | |
<div class="form-group"> | |
<input type="submit" value="Save" class="btn btn-block btn-outline-primary "/> | |
</div> | |
</div> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment