
        <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button>
            <h4 class="modal-title"> 請選擇與收件人關係 及 物品類別</h4>
        </div>
        <div class="modal-body">
    		<label style="color:black;font-size:24px;font-weight:bold;">關係為</label><input id="txt_relationships" type="text" readonly style="margin-left:5px;color:green;border: 0px solid;font-size:24px;font-weight:bold;" value=""><br>
        	<?php foreach($keeper_relationship as $keeper_relationships): ?>
        	<button class='btn blue btn_relationships' value="<?php echo e($keeper_relationships); ?>" style='font-size:16px;height:28px;margin:6px;padding:3px 15px;min-width:70px;'><?php echo e($keeper_relationships); ?></button>
        	<?php endforeach; ?>
        	<br><br>
        	<label style="color:black;font-size:24px;font-weight:bold;">類別為</label><input id="txt_keeper_classs" type="text" readonly style="margin-left:5px;color:green;border: 0px solid;font-size:24px;font-weight:bold;" value=""><br>
        	<?php foreach($keeper_class as $keeper_classs): ?>
        	<button class='btn blue btn_keeper_classs' value="<?php echo e($keeper_classs); ?>" style='font-size:16px;height:28px;margin:6px;padding:3px 15px;min-width:70px;'><?php echo e($keeper_classs); ?></button>
        	<?php endforeach; ?>
        	<br><br>
            <?php $Setting = app('anlutro\LaravelSettings\SettingStore'); ?>
            <?php if($Setting->get('manage.keeper_cost.display') == 'on'): ?>
            <label style="color:black;font-size:24px;font-weight:bold;">收取金額</label>
            <input id="txt_keeper_cost" type="number" style="margin-left:5px;border: 1px solid;font-size:24px;" min=0 placeholder="0"><br>
            <br><br>
            <?php else: ?>
            <input id="txt_keeper_cost" type="number" style="display: none;" min=0 value="0">
            <?php endif; ?>
        	<div align="center">
        		<button class="camera_Button bold" data-toggle="modal" data-target="#camera" style="background:purple;width:200px;height:50px;font-size:20px;color:white">拍 攝 物 品</button>
        	</div>
        </div>
        <div class="modal-footer">
        	<button id="btn_add_tags" class="btn red" style="margin-right:55%;">新增項目</button>
            <button type="button" data-dismiss="modal" class="btn btn-outline dark">取消</button>
            <button id="btn_box_id_submit2" type="button" class="btn green">送出</button>
        </div>