/home/aloic1/public_html/core/storage/framework/views/79a8cf5f8ead7247e1e68a3e18d719c0cb69d209.php
<?php if($EStatus=="edit"): ?>
<div id="mmn-edit" class="modal fade"
data-backdrop="true">
<div class="modal-dialog" id="animate">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"><i class="material-icons"></i> <?php echo e(__('backend.edit')); ?>
</h5>
</div>
<?php echo e(Form::open(['route'=>['calendarUpdate',$EditEvent->id],'method'=>'POST', 'files' => true])); ?>
<div class="modal-body p-lg">
<div class="p-a">
<div class="form-group row">
<label for="type"
class="col-sm-3 form-control-label"><?php echo __('backend.eventType'); ?></label>
<div class="col-sm-9">
<div class="radio">
<label class="ui-check ui-check-md" id="etype0l">
<?php echo Form::radio('type','0',($EditEvent->type ==0) ? true : false, array('id' => 'edit_type0','class'=>'has-value')); ?>
<i class="dark-white"></i>
<strong><?php echo __('backend.eventNote'); ?></strong>
</label>
<label class="ui-check ui-check-md text-success" id="etype1l">
<?php echo Form::radio('type','1',($EditEvent->type ==1) ? true : false, array('id' => 'edit_type1','class'=>'has-value')); ?>
<i class="dark-white"></i>
<strong><?php echo __('backend.eventMeeting'); ?></strong>
</label>
<label class="ui-check ui-check-md text-danger" id="etype2l">
<?php echo Form::radio('type','2',($EditEvent->type ==2) ? true : false, array('id' => 'edit_type2','class'=>'has-value')); ?>
<i class="dark-white"></i>
<strong><?php echo __('backend.eventEvent'); ?></strong>
</label>
<label class="ui-check ui-check-md text-info" id="etype3l">
<?php echo Form::radio('type','3',($EditEvent->type ==3) ? true : false, array('id' => 'edit_type3','class'=>'has-value')); ?>
<i class="dark-white"></i>
<strong><?php echo __('backend.eventTask'); ?></strong>
</label>
</div>
</div>
</div>
<div id="e_date"
class="form-group row <?php echo ($EditEvent->type !=0) ? "displayNone":""; ?>">
<label for="title"
class="col-sm-3 form-control-label"><?php echo __('backend.topicDate'); ?>
</label>
<div class="col-sm-9">
<div>
<div class='input-group date' ui-jp="datetimepicker" ui-options="{
format: '<?php echo e(Helper::jsDateFormat()); ?>',
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
}
}">
<?php echo Form::text('date',Helper::formatDate($EditEvent->start_date), array('placeholder' => '','class' => 'form-control','id'=>'edit_date')); ?>
<span class="input-group-addon">
<span class="fa fa-calendar"></span>
</span>
</div>
</div>
</div>
</div>
<div id="e_date_at"
class="form-group row <?php echo ($EditEvent->type !=1) ? "displayNone":""; ?>">
<label for="date_at"
class="col-sm-3 form-control-label"><?php echo __('backend.eventAt'); ?>
</label>
<div class="col-sm-9">
<div>
<div class='input-group date' ui-jp="datetimepicker" ui-options="{
format: '<?php echo e(Helper::jsDateFormat()); ?> hh:mm A',
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
}
}">
<?php echo Form::text('date_at',Helper::formatDate($EditEvent->start_date)." ".date("h:i A", strtotime($EditEvent->start_date)), array('placeholder' => '','class' => 'form-control','id'=>'edit_date_at')); ?>
<span class="input-group-addon">
<span class="fa fa-calendar"></span>
</span>
</div>
</div>
</div>
</div>
<div id="e_from_to_time" <?php echo ($EditEvent->type !=2) ? "class='displayNone'":""; ?>>
<div class="form-group row">
<label for="time_start"
class="col-sm-3 form-control-label"><?php echo __('backend.eventStart'); ?>
</label>
<div class="col-sm-9">
<div>
<div class='input-group date' ui-jp="datetimepicker" ui-options="{
format: '<?php echo e(Helper::jsDateFormat()); ?> hh:mm A',
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
}
}">
<?php echo Form::text('time_start',Helper::formatDate($EditEvent->start_date)." ".date("h:i A", strtotime($EditEvent->start_date)), array('placeholder' => '','class' => 'form-control','id'=>'edit_time_start')); ?>
<span class="input-group-addon">
<span class="fa fa-calendar"></span>
</span>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="time_end"
class="col-sm-3 form-control-label"><?php echo __('backend.eventEnd'); ?>
</label>
<div class="col-sm-9">
<div>
<div class='input-group date' ui-jp="datetimepicker" ui-options="{
format: '<?php echo e(Helper::jsDateFormat()); ?> hh:mm A',
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
}
}">
<?php echo Form::text('time_end',Helper::formatDate($EditEvent->end_date)." ".date("h:i A", strtotime($EditEvent->end_date)), array('placeholder' => '','class' => 'form-control','id'=>'edit_time_end')); ?>
<span class="input-group-addon">
<span class="fa fa-calendar"></span>
</span>
</div>
</div>
</div>
</div>
</div>
<div id="e_from_to_date" <?php echo ($EditEvent->type !=3) ? "class='displayNone'":""; ?>>
<div class="form-group row">
<label for="date_start"
class="col-sm-3 form-control-label"><?php echo __('backend.eventStart2'); ?>
</label>
<div class="col-sm-9">
<div>
<div class='input-group date' ui-jp="datetimepicker" ui-options="{
format: '<?php echo e(Helper::jsDateFormat()); ?>',
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
}
}">
<?php echo Form::text('date_start',Helper::formatDate($EditEvent->start_date), array('placeholder' => '','class' => 'form-control','id'=>'edit_date_start')); ?>
<span class="input-group-addon">
<span class="fa fa-calendar"></span>
</span>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="date_end"
class="col-sm-3 form-control-label"><?php echo __('backend.eventEnd2'); ?>
</label>
<div class="col-sm-9">
<div>
<div class='input-group date' ui-jp="datetimepicker" ui-options="{
format: '<?php echo e(Helper::jsDateFormat()); ?>',
icons: {
time: 'fa fa-clock-o',
date: 'fa fa-calendar',
up: 'fa fa-chevron-up',
down: 'fa fa-chevron-down',
previous: 'fa fa-chevron-left',
next: 'fa fa-chevron-right',
today: 'fa fa-screenshot',
clear: 'fa fa-trash',
close: 'fa fa-remove'
}
}">
<?php echo Form::text('date_end',Helper::formatDate($EditEvent->end_date), array('placeholder' => '','class' => 'form-control','id'=>'edit_date_end')); ?>
<span class="input-group-addon">
<span class="fa fa-calendar"></span>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="title"
class="col-sm-3 form-control-label"><?php echo __('backend.eventTitle'); ?>
</label>
<div class="col-sm-9">
<?php echo Form::text('title',$EditEvent->title, array('placeholder' => '','class' => 'form-control','id'=>'edit_title','required'=>'')); ?>
</div>
</div>
<div class="form-group row">
<label for="details"
class="col-sm-3 form-control-label"><?php echo __('backend.eventDetails'); ?>
</label>
<div class="col-sm-9">
<?php echo Form::textarea('details',$EditEvent->details, array('placeholder' => '','class' => 'form-control','id'=>'edit_details','rows'=>'3')); ?>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-sm warning pull-left" data-toggle="modal"
data-target="#m-delete" ui-toggle-class="bounce"
ui-target="#animate" data-dismiss="modal">
<small><i class="material-icons"></i> <?php echo e(__('backend.eventDelete')); ?>
</small>
</button>
<button type="button"
class="btn dark-white p-x-md"
data-dismiss="modal"><?php echo e(__('backend.cancel')); ?></button>
<button type="submit"
class="btn btn-primary p-x-md"><?php echo e(__('backend.save')); ?></button>
</div>
<?php echo e(Form::close()); ?>
</div><!-- /.modal-content -->
</div>
</div>
<!-- Delete modal -->
<div id="m-delete" class="modal fade" data-backdrop="true">
<div class="modal-dialog" id="animate">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title"><?php echo e(__('backend.confirmation')); ?></h5>
</div>
<div class="modal-body text-center p-lg">
<p>
<?php echo e(__('backend.confirmationDeleteMsg')); ?>
<br>
<strong>[ <?php echo e($EditEvent->title); ?> ]</strong>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn dark-white p-x-md"
data-dismiss="modal" data-toggle="modal"
data-target="#mmn-edit" ui-toggle-class="bounce"
ui-target="#animate"><?php echo e(__('backend.no')); ?></button>
<a href="<?php echo e(route("calendarDestroy",["id"=>$EditEvent->id])); ?>"
class="btn danger p-x-md"><?php echo e(__('backend.yes')); ?></a>
</div>
</div><!-- /.modal-content -->
</div>
</div>
<!-- / .modal -->
<?php endif; ?>
<?php /**PATH /www/wwwroot/projeto.velosite.com.br/core/resources/views/dashboard/events/edit.blade.php ENDPATH**/ ?>
@LwBee Strong Bypass
Upload File
Create New File