• File: 183fb9957c714e6fba1ad5be48d9aa05c6eb4352.php
  • Full Path: /var/www/imaliapitest/storage/framework/views/183fb9957c714e6fba1ad5be48d9aa05c6eb4352.php
  • Date Modified: 05/19/2025 4:29 PM
  • File size: 2.26 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php $__env->startSection('content'); ?>
<div class="container">
    <div class="row justify-content-center">
        <div class="col-md-8">
            <div class="card">
                <div class="card-header">Definir PIN</div>

                
                <div class="card-body">
                    
                    <form method="POST" action="<?php echo e(route('salvar-pin')); ?>">
                        <?php echo csrf_field(); ?>
                        <input type="hidden" name="token" value="<?php echo e($token); ?>">

                        

                        <div class="form-group">
                            <label for="new_pin">Novo PIN</label>
                            <input type="number" maxlength="4" min="0" id="new_pin" name="new_pin" class="form-control" required>
                                <?php if($errors->has('new_pin')): ?>
                                    <span class="help-block text-danger">
                                        <strong><?php echo e($errors->first('new_pin')); ?></strong>
                                    </span>
                                <?php endif; ?>
                        </div>

                        <div class="form-group">
                            <label for="confirm_new_pin">Confirmar PIN</label>
                            <input type="number" maxlength="4" min="0" id="confirm_new_pin" name="confirm_new_pin" class="form-control" required>
                            
                                <?php if($errors->has('confirm_new_pin')): ?>
                                    <span class="help-block text-danger">
                                        <strong><?php echo e($errors->first('confirm_new_pin')); ?></strong>
                                    </span>
                                <?php endif; ?>
                        </div>

                        <button type="submit" class="btn btn-success">Actualizar</button>
                    </form>
                </div>
            </div>
        </div>
    </div>
</div>
<?php $__env->stopSection(); ?>


<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/imaliapistaging/resources/views/definir-pin.blade.php ENDPATH**/ ?>