2023-04-02 12:07:15 +00:00
|
|
|
<!-- $o=Binary\JpegPhoto::class -->
|
2023-04-12 13:18:26 +00:00
|
|
|
@if($edit)
|
|
|
|
<div class="input-group has-validation @if($e=$errors->get($o->name_lc))is-invalid @endif">
|
|
|
|
@endif
|
2023-04-02 12:07:15 +00:00
|
|
|
|
2023-09-02 10:50:54 +00:00
|
|
|
<table class="table table-borderless p-0 m-0">
|
|
|
|
<tr>
|
|
|
|
@foreach ($o->values as $value)
|
|
|
|
@switch ($x=$f->buffer($value,FILEINFO_MIME_TYPE))
|
|
|
|
@case('image/jpeg')
|
|
|
|
@default
|
|
|
|
<td>
|
|
|
|
<input type="hidden" name="{{ $o->name_lc }}[]" value="{{ md5($value) }}">
|
|
|
|
<img class="jpegphoto" src="data:{{ $x }};base64, {{ base64_encode($value) }}" />
|
2023-04-12 13:18:26 +00:00
|
|
|
|
2023-09-02 10:50:54 +00:00
|
|
|
@if($edit)
|
|
|
|
<br><span class="btn btn-sm btn-danger deletable d-none"><i class="fas fa-trash-alt"></i> @lang('Delete')</span>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
@endswitch
|
|
|
|
@endforeach
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-04-12 13:18:26 +00:00
|
|
|
|
2023-09-02 10:50:54 +00:00
|
|
|
@if($edit)
|
|
|
|
<div class="invalid-feedback pb-2">
|
|
|
|
@if($e)
|
|
|
|
{{ join('|',$e) }}
|
|
|
|
@endif
|
2023-04-12 13:18:26 +00:00
|
|
|
</div>
|
2023-09-02 10:50:54 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
@endif
|