31 lines
1.6 KiB
PHP
31 lines
1.6 KiB
PHP
|
|
<div class="pt-5">
|
|
@if($errors->has('commentable_type'))
|
|
<div class="alert alert-danger" role="alert">
|
|
{{ $errors->first('commentable_type') }}
|
|
</div>
|
|
@endif
|
|
@if($errors->has('commentable_id'))
|
|
<div class="alert alert-danger" role="alert">
|
|
{{ $errors->first('commentable_id') }}
|
|
</div>
|
|
@endif
|
|
<form class="block rounded-lg p-6 dark:bg-neutral-700/40" method="POST" action="{{ route('comments.store') }}">
|
|
@csrf
|
|
@honeypot
|
|
<input type="hidden" name="commentable_type" value="\{{ get_class($model) }}" />
|
|
<input type="hidden" name="commentable_id" value="{{ $model->getKey() }}" />
|
|
|
|
<div class="pb-5">
|
|
<label class="mb-2 text-xl font-medium leading-tight text-gray-800 dark:text-gray-200 w-full" for="message">@lang('comments::comments.enter_your_message_here')</label>
|
|
<textarea class="peer block min-h-[auto] w-full border-1 bg-transparent px-3 py-[0.32rem] leading-[1.6] outline-none transition-all duration-200 ease-linear dark:placeholder:text-neutral-200 border-gray-300 dark:border-neutral-950 dark:bg-neutral-900 dark:text-gray-300 focus:border-rose-500 dark:focus:border-rose-600 focus:ring-rose-500 dark:focus:ring-rose-600 rounded-md shadow-sm @if($errors->has('message')) is-invalid @endif" name="message" rows="3"></textarea>
|
|
</div>
|
|
|
|
<x-primary-button>
|
|
@lang('comments::comments.submit')
|
|
</x-primary-button>
|
|
</form>
|
|
</div>
|
|
|
|
<br />
|