Я хочу заменить несколько текстовых областей (Content En и Content Ru) на ckeditor, но все они имеют одинаковый идентификатор. Как это сделать, потому что после загрузки одного редактора он останавливается.
Форма:
{!! Form::open([ 'route' => 'portfolio.store', 'files' => 'true']) !!}
@foreach(config('translatable.locales') as $locale)
<div class="form-group">
<label for="translation[{{$locale}}][title]"><strong>Title ({{$locale}})</strong></label>
<input type="text" id="title"
name="translation[{{$locale}}][title]"
class="form-control"
value="{{ old('translation.'. $locale.'.title') }}">
</div>
<div class="form-group">
<label for="translation[{{$locale}}][content]"><strong>Content ({{$locale}})</strong></label>
<textarea name="translation[{{$locale}}][content]"
id="content"
class="form-control"
cols="30"
rows="10">{{ old('translation.'. $locale.'.content') }}</textarea>
</div>
@endforeach
<div class="form-group">
<label for="image"><strong>Image</strong></label>
<input type="file" id="image" name="image" class="form-control-file">
</div>
<br>
<input class="btn btn-success btn-lg btn-block" type="submit" value="Add Portfolio">
{!! Form::close() !!}
Сценарий:
<script>
CKEDITOR.replace( 'content' );
</script>
введите описание изображения здесь