fix: Update gallery form to change label from 'Video Link' to 'Description' and adjust placeholder text

This commit is contained in:
2025-08-27 12:01:42 +05:45
parent f22a60fef4
commit 032e8405ca
2 changed files with 3 additions and 3 deletions

View File

@@ -26,8 +26,8 @@
</div> </div>
<div class="mb-3"> <div class="mb-3">
{{ html()->label('Video Link')->for('slug') }} {{ html()->label('Description')->for('slug') }}
{{ html()->text('link')->value($gallery->link ?? old('link'))->class('form-control')->placeholder('Enter Youtube video link') }} {{ html()->text('link')->value($gallery->link ?? old('link'))->class('form-control')->placeholder('Enter Video Description') }}
<div class="d-flex flex-wrap mt-1" id="video-preview"> <div class="d-flex flex-wrap mt-1" id="video-preview">
</div> </div>
</div> </div>

View File

@@ -10,7 +10,7 @@
preload="auto"></video> preload="auto"></video>
<div class="play-button" id="playBtn"></div> <div class="play-button" id="playBtn"></div>
<div class="text"> <div class="text">
<p class="text-black text-14 ">Lorem ipsum dolor sit amet, consectetur </p> <p class="text-black text-14 ">{{ $gallery->link }}</p>
</div> </div>
<div class="name"> <div class="name">
<h4 class="text-14">{{ $gallery->title }}</h4> <h4 class="text-14">{{ $gallery->title }}</h4>