16 lines
693 B
PHP
16 lines
693 B
PHP
<div id="sticky">
|
|
<div id="commentForm">
|
|
<form action="{{action('CommentController@store', ['id' => $video->id])}}" method="post">
|
|
{!! csrf_field() !!}
|
|
<div class="comment-panel panel-default">
|
|
<div class="comment-panel panel-body">
|
|
{!! Form::textarea('comment', null, ['placeholder' => 'Write something...', 'id' => 'cinput', 'class' => 'form-control text-light comment-entry-textarea', 'required' => 'required']) !!}
|
|
</div>
|
|
<div class="commentButton">
|
|
<div id="comment_tools" class="commentform-panel-footer"><button type="submit" class="btn btn-dark btn-sm">Post</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div> |