WordPress

Coming Soon

revealability
<?php $__env->startSection('title','Upload Document'); ?> <?php $__env->startSection('main_container'); ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="page-header"> <h3 class="page-title"> Upload Document </h3> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Document</li> </ol> </nav> </div> <div class="row"> <div class="col-md-6 grid-margin stretch-card"> <div class="card"> <div class="card-body"> <h4 class="card-title"></h4> <p class="card-description"> </p> <form class="forms-sample" action="<?php echo e(url('/add_proofs/'.$fetch->form_id)); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <input type="hidden" name="form_id" value="<?php echo $fetch->form_id?>"/> <div class="form-group"> <label >Document Type</label> <select name="document_type" value="<?php echo e(old('document_type')); ?>" class="form-control"> <option value="">Select Type</option> <?php foreach($document_id_arr as $data) { ?> <option style="margin-right:200px;" value="<?php echo $data->id;?>"> <?php echo $data->types_name ?></option> <?php } ?> </select> <?php if($errors->has('document_type')): ?> <span class="text-danger"><?php echo e($errors->first('document_type')); ?></span> <?php endif; ?> </div> <div class="form-group"> <label >Name Of the Document</label> <input type="text" class="form-control" name="document_name" placeholder="ex. Organisation Chart"> <?php if($errors->has('document_name')): ?> <span class="text-danger"><?php echo e($errors->first('document_name')); ?></span> <?php endif; ?> </div> <div class="form-group"> <label >Document</label> <input type="file" class="form-control" name="document" placeholder="Email"> <?php if($errors->has('document')): ?> <span class="text-danger"><?php echo e($errors->first('document')); ?></span> <?php endif; ?> </div> <button type="submit" class="btn btn-primary mr-2">Submit</button> <button class="btn btn-light">Cancel</button> </form> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <?php $__env->stopSection(); ?> <?php echo $__env->make('User.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/iimtstudiesco/public_html/center/resources/views/User/add_proofs.blade.php ENDPATH**/ ?>