@extends('admin.master.index') @section('content')
{!! Form::open(['route' => ['admin.comments.update', 'id' => $comment->id], 'method' => 'PUT']) !!}
{!! Form::label('comment', 'Comment') !!} {!! Form::textarea('comment', $comment->comment, ['class' => 'form-control input-lg', 'placeholder' => 'Description']) !!}
{!! Form::checkbox('delete', 1) !!}
{!! Form::submit('Update', ['class' => 'btn btn-success btn-lg']) !!}
{!! Form::close() !!}
@endsection @section('extra-js') @endsection