@extends('admin.layouts.main') @section('content')

{{ trans('messages.Edit Blog') }}

{!! Form::open([ 'method' => 'PUT', 'route' => ['blogComment.update', $blogComment->id], 'files' => true, 'id' => 'edit-pade-form', ]) !!}
{!! Form::textarea('comment', $blogComment->comment, [ 'id' => 'editor1', 'class' => 'form-control', 'placeholder' => trans('messages.Comment'), ]) !!}
@error('comment')
{{ $message }}
@enderror
{!! Form::Close() !!}
@endsection @section('script') @endsection