Skip to content

Commit

Permalink
#94 - Media text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ttimot24 committed Nov 4, 2024
1 parent 481177c commit 204bd04
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions app/View/media/header_images.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class='card-img-top' width='100%' height='75%;' style="object-fit:cover;">
@endif

<div class="card-body text-black">
<h5 class="card-title">{{ $each->title }} <small> | {{$each->type}}</small></h5>
<h5 class="card-title">{{ $each->title }}<small> | {{$each->type}}</small></h5>
</div>
<ul class="list-group list-group-flush mb-3">
<a class='btn btn-danger btn-xs btn-block'
Expand Down Expand Up @@ -194,7 +194,7 @@ class='btn btn-primary'>{{ trans('actions.save') }}</button>
class='card-img-top' width='100%' height='75%;' style="object-fit:cover;">
@endif
<div class="card-body text-black">
<h5 class="card-title">{{ $each->title }}</h5>
<h5 class="card-title">{{ $each->title }}<small> | {{$each->type}}</small></h5>
</div>
</div>

Expand All @@ -221,13 +221,21 @@ class='card-img-top' width='100%' height='75%;' style="object-fit:cover;">
</div>
<div class="mb-3">
<div class="row">
<div class="col-11">
<div class="col-9">
<label for="header-image-image"
class="form-label">Image</label>
class="form-label">Media</label>
<input type="text" class="form-control disabled"
id="header-image-title" value="{{ $each->getImage() }}"
disabled>

</div>
<div class="col-2">
<label for="header-image-image"
class="form-label">Media</label>
<input type="text" class="form-control disabled"
id="header-image-type" value="{{ $each->type }}"
disabled>

</div>
<div class="col-1">
<label for="header-image-image"
Expand Down Expand Up @@ -304,7 +312,7 @@ class='btn btn-primary'>{{ trans('actions.save') }}</button>
<div class='modal-body'>
@csrf
<div class='form-group'>
<label for='file'>Upload file:</label>
<label for='file'>Upload file</label>
<input name='up_file' id='input-2' type='file' class='file' accept="image/*, video/*"
multiple='true' data-show-upload='false' data-show-caption='true' required>
</div>
Expand Down

0 comments on commit 204bd04

Please sign in to comment.