<?php $_shouldextend[1]=1; ?>

<?php $this->startSection("content"); ?>

 <section class="container-fluid pt-5">
 <div class="row justify-content-center">
 <div class="col-12 col-lg-5 ">
 <div class="grid-container bg-white shadow-sm">
 <div class="py-3 bg-gray-1 container-fluid rounded-bottom  border-bottom border-right border-left">
 <h6 class="mb-0">
 <i class="fa fa-info-circle float-left mr-2 mt-1">
 </i>
 Reportar Erros
 </h6>
 </div>
 <form id="form-report-error" >
 <div class=" py-3">
 <div class="form-group">
 <label for="usr" class="sm-font">Anomalia:</label>
 <input type="text" class="form-control border-x" name="fallout" placeholder="Anomalia">
 </div>
 <div class="form-group">
 <label for="comment" class="sm-font">Descrição da anomalia:</label>
 <textarea class="form-control border-x" rows="6" style="resize: none;" id="comment" name="description"></textarea>
 </div>
 <div class="form-control-feedback col-6 is-invalid">
 <div class="invalid-feedback hidden error-fd-report-error">

 </div>
 </div>
 <button class="btn btn-outline-info border rounded d-block ml-auto btn-report-error" type="button" data-btn-progress="false">
 Reportar anomalia
 <i class="float-right ml-2 fa fa-exclamation-circle mt-1"></i>
 </button>
 </div>
 </form>
 </div>
 </div>
 </div>
 </section>
 <?php $this->startPush("scripts"); ?>
 <script src="views/admin/assets/js/reportError.js?v=<?php echo static::e(time()); ?>"></script>
 <?php $this->stopPush(); ?>
<?php $this->stopSection(); ?>

<?php if (@$_shouldextend[1]) { echo $this->runChild("admin.layouts.adminApp"); } ?>