@if(Session::has('success'))
{{ Session::get('success') }}
@endif
{{ Form::open(['route' => ['comment.store',$post->id], 'method' => 'post', 'id' => 'comments_form']) }}
{{ Form::Label('comment', 'Comment') }} * {{ Form::textarea('comment',null, array('id'=>'comment', 'class'=> 'form-control input-text comment_field')) }}
{{ Form::Label('name', 'Name') }} * {{ Form::text('comment_name', null, array('id'=>'name', 'class'=>'form-control input-text comment_name')) }}
{{ Form::Label('email', 'Email') }} * {{ Form::text('comment_email', null, array('id'=>'email', 'class'=> 'form-control input-text comment_email')) }}
{{ Form::Label('website', 'Website') }} {{ Form::text('website', null, array('id'=>'website', 'class'=> 'form-control input-text comment_website')) }}
{{ Form::button('Post Comment',array("class"=>"post-btn comment_form" , "rows"=>"5", "type" => "submit")) }}
{{ Form::close() }}