mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
25 lines
853 B
PHP
25 lines
853 B
PHP
@if($writable)
|
|
@can('createComment', $model)
|
|
<div class="comments-form">
|
|
@if($showAvatars)
|
|
<x-comments::avatar/>
|
|
@endif
|
|
<form class="comments-form-inner" wire:submit.prevent="comment">
|
|
<x-dynamic-component
|
|
:component="\Spatie\LivewireComments\Support\Config::editor()"
|
|
model="text"
|
|
:placeholder="__('comments::comments.write_comment')"
|
|
/>
|
|
@error('text')
|
|
<p class="comments-error">
|
|
{{ $message }}
|
|
</p>
|
|
@enderror
|
|
<x-comments::button submit>
|
|
{{ __('comments::comments.create_comment') }}
|
|
</x-comments::button>
|
|
</form>
|
|
</div>
|
|
@endcan
|
|
@endif
|