2020-03-05 18:00:24 -08:00
|
|
|
<div class="form-group {{ $errors->has((isset($fieldname) ? $fieldname : 'image')) ? 'has-error' : '' }}">
|
2017-12-06 14:33:52 -08:00
|
|
|
<label class="col-md-3 control-label" for="image">{{ trans('general.image_upload') }}</label>
|
2018-07-19 10:39:12 -07:00
|
|
|
<div class="col-md-9">
|
2020-04-02 18:17:21 -07:00
|
|
|
|
2020-08-26 02:30:23 -07:00
|
|
|
<input type="file" id="image" name="{{ (isset($fieldname) ? $fieldname : 'image') }}" aria-label="image" class="sr-only">
|
2020-04-02 18:17:21 -07:00
|
|
|
|
|
|
|
<label class="btn btn-default" aria-hidden="true">
|
2017-12-06 14:33:52 -08:00
|
|
|
{{ trans('button.select_file') }}
|
2021-09-28 19:44:55 -07:00
|
|
|
<input type="file" name="{{ (isset($fieldname) ? $fieldname : 'image') }}" class="js-uploadFile" id="uploadFile" data-maxsize="{{ Helper::file_upload_max_size() }}" accept="image/gif,image/jpeg,image/webp,image/png,image/svg,image/svg+xml" style="display:none; max-width: 90%" aria-label="image" aria-hidden="true">
|
2017-12-06 14:33:52 -08:00
|
|
|
</label>
|
2019-03-01 15:25:42 -08:00
|
|
|
<span class='label label-default' id="uploadFile-info"></span>
|
2018-02-16 21:17:41 -08:00
|
|
|
|
2021-09-28 19:44:55 -07:00
|
|
|
<p class="help-block" id="uploadFile-status">{{ trans('general.image_filetypes_help', ['size' => Helper::file_upload_max_size_readable()]) }}</p>
|
2020-04-01 03:21:15 -07:00
|
|
|
{!! $errors->first('image', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
2017-12-06 14:33:52 -08:00
|
|
|
</div>
|
2020-04-02 18:17:21 -07:00
|
|
|
<div class="col-md-4 col-md-offset-3" aria-hidden="true">
|
2021-11-19 03:12:11 -08:00
|
|
|
<img id="uploadFile-imagePreview" style="max-width: 200px; display: none;" alt="{{ trans('partials/forms/general.alt_uploaded_image_thumbnail') }}">
|
2018-02-17 00:51:22 -08:00
|
|
|
</div>
|
2017-12-06 14:33:52 -08:00
|
|
|
</div>
|
2018-01-09 20:12:07 -08:00
|
|
|
|