<div class="entry" data-type="image" <?php if(isset($entry->id)): ?> data-entry-id="<?php echo e($entry->id); ?>" <?php endif; ?>>
    <?php echo $__env->make('_forms.__entryactions', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
    <h3><i class="fa fa-picture-o"></i> <?php echo e(trans('addpost.image')); ?></h3>
    <div class="inpunting ordering ">
         <button class="order-number button button-gray">1</button>
        <?php echo Form::text(null, isset($entry->title) ? $entry->title : null ?: null, ['data-type' => 'title', 'class' => 'cd-input ', 'placeholder' => trans('addpost.entry_titleop')]); ?>

    </div>
    <div class="inpunting mediaupload" <?php if(isset($entry->image)): ?> style="display: none;" <?php endif; ?>>
        <div class="item-media-placeholder">
            <i class="fa fa-plus fa-2x"></i><br>
            <small class="text-muted"><?php echo e(trans('addpost.entry_addimage')); ?></small>
            <form action="">
            <input type="file" accept="image/*" class="uploadaimage" data-target="entry">
            </form>
            <div style="font-size:12px;color:#ccc"> <?php echo e(trans('updates.or')); ?> </div>
            <div class="image-upload-actions">
                <a class="button button-white getimageurl" data-action="add" data-target="entry"><?php echo e(trans('updates.getfromurl')); ?> <i class="fa fa-download"></i></a>
            </div>
        </div>
    </div>
    <?php echo Form::hidden(null, isset($entry->image) ? makepreview($entry->image, null, 'entries') : null, ['data-type' => 'image', 'class' => 'cd-input-image ']); ?>

    <div class="inpunting imagearea <?php if(empty($entry->image)): ?> hide <?php endif; ?>">
        <div class="imagearea_img">
        <?php if(isset($entry->image)): ?> <img src="<?php echo e(makepreview($entry->image, null, 'entries')); ?>"> <?php endif; ?>
        </div>
        <div class="thumbactions">
            <a class="button button-red deleteimage" data-action="remove" data-target="image"><i class="fa fa-trash"></i></a>  <a class="button button-white makepreview"><i class="fa fa-image"></i>&nbsp;<?php echo e(trans('addpost.makepreview') ?: 'Make preview image'); ?></a>
        </div>
    </div>
    <div class="moredetail text">

        <div class="detailhide" style="display:none">
                <div class="inpunting">
                    <?php echo Form::text(null, isset($entry->source) ? $entry->source : null, ['data-type' => 'source', 'class' => 'cd-input ', 'placeholder' => trans('addpost.entry_source')]); ?>

                </div>
               <div class="inpunting">
               <?php echo Form::textarea(null, isset($entry->body) ? $entry->body : null, ['data-type' => 'body', 'class' => 'message','id' => 'edit', 'placeholder' => trans('addpost.entry_body')]); ?>

                </div>
        </div>
        <a href="javascript:;" class="trigger"><span class="down"><?php echo e(trans('addpost.mored')); ?> <i class="fa fa-angle-down"></i></span><span class="up"><?php echo e(trans('addpost.lessd')); ?>  <i class="fa fa-angle-up"></i></span></a>
    </div>

</div>
