Created
June 26, 2021 20:51
-
-
Save minons1/21336a5098f21547828e5aadeb263412 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
<!-- Edit Button --> | |
<small class=" btn btn-outline-warning btn-sm float-right"> | |
<a type="button" data-toggle="modal" data-target="#editModal<?= $ablog['blog_id']?>">edit</a> | |
</small> | |
<!-- Edit Story Modal --> | |
<div class="modal fade" id="editModal<?= $ablog['blog_id']?>" tabindex="-1" role="dialog" aria-labelledby="editModalLabel" aria-hidden="true"> | |
<div class="modal-dialog" role="document"> | |
<div class="modal-content"> | |
<form method="post" action="/blog/<?= $ablog['blog_id']?>/update" > | |
<?= csrf_field(); ?> | |
<div class="card custom-card"> | |
<div class="card-body"> | |
<h5 class="card-title"> | |
<div class="form-group"> | |
<label >Edit Story</label> | |
<input name="blog_title" type="text" class="form-control" id="formGroupEditInput" placeholder="Title" value="<?= $ablog['blog_title']?>""> | |
</div> | |
</h5> | |
<p class="card-text"> | |
<div class="form-group"> | |
<textarea rows="10" cols="100" name="blog_description" class="form-control" id="formGroupEditInput2" placeholder="The Story ..."><?= $ablog['blog_description']?></textarea> | |
</div> | |
</p> | |
<div class="form-group"> | |
<input type="submit" value="Update" 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