<style>
    label.p-imgupload__area {
        margin: auto;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    .facility-canvas{
        /*width: 200px;*/
        /*height: 100%;*/
        display: table;
        max-height: 100%;
    }
    img{
        max-height: 100%;
        width: auto;
    }
</style>
<label id="{{$id}}" class="p-imgupload__area" for="fileSingleInput">
    @if(isset($facility_info->file_path) && $facility_info->file_path != null)
        <img src="{{$facility_info->file_path . '?v=' . time() }}" width="200" />
    @endif
    <canvas  class="facility-canvas" name="canvas_floor" width="0" height="0"></canvas>
    <p class="p-imgupload__text">クリックまたは<br>ドラッグ&amp;ドロップ</p>
    <input id="fileSingleInput" type="file" name="file_single_input" style="display:none;">
    <input type="hidden" name="file_path" value="{{$file_path??''}}">
</label>
