@extends('layouts.app') @section('content')
@lang('Update')

@csrf @method('PUT')
{{ $blogComment->blog->title }}
{{ $blogComment->user->name }}
@error('status') {{ $message }} @enderror
@include('includes.textarea', [ 'selectors' => '.description', 'labels' => [0 => Lang::get('Description')], 'posts' => [$blogComment->comment], ])
@endsection @section('scripts') @if (app()->getLocale() != 'en') @endif @endsection