File: //home/cursos.ril.es/storage/framework/views/a47876918abdf9397f0247ae32fee8ac1649fc7c.php
<?php $__env->startSection('header'); ?>
@parent
<title>Editar datos</title>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('pagina'); ?>
<div class="separacion-top"></div>
<div class="col-xs-12 col-sm-offset-1 col-sm-10 col-md-offset-2 col-md-8">
<form action="/datos/update" method="POST">
<input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
<input name="_method" type="hidden" value="PUT">
<div class="form-group col-md-4">
<label for="name">Nombre</label>
<input type="text" name="name" class="form-control" id="name" placeholder="name" value="<?php echo e($alumno->name); ?>"/>
<?php if($errors->has('name')): ?> <p class="help-block"><?php echo e($errors->first('Nombre')); ?></p> <?php endif; ?>
</div>
<div class="form-group col-md-4">
<label for="apellidos">Apellidos</label>
<input type="text" name="apellidos" class="form-control" id="apellidos" placeholder="apellidos" value="<?php echo e($alumno->apellidos); ?>"/>
<?php if($errors->has('apellidos')): ?> <p class="help-block"><?php echo e($errors->first('Apellidos')); ?></p> <?php endif; ?>
</div>
<div class="form-group col-md-4">
<label for="email">Email</label>
<input type="text" name="email" class="form-control" id="email" placeholder="Email" value="<?php echo e($alumno->email); ?>"/>
<?php if($errors->has('email')): ?> <p class="help-block"><?php echo e($errors->first('email')); ?></p> <?php endif; ?>
</div>
<div class="form-group col-md-4">
<label for="telefono">Teléfono</label>
<input type="text" name="telefono" class="form-control" id="telefono" placeholder="Teléfono" value="<?php echo e($alumno->telefono); ?>"/>
<?php if($errors->has('telefono')): ?> <p class="help-block"><?php echo e($errors->first('telefono')); ?></p> <?php endif; ?>
</div>
<div class="form-group col-md-4">
<label for="camara">Cámara</label>
<input type="text" name="camara" class="form-control" id="camara" placeholder="Cámara" value="<?php echo e($alumno->camara); ?>"/>
<?php if($errors->has('camara')): ?> <p class="help-block"><?php echo e($errors->first('camara')); ?></p> <?php endif; ?>
</div>
<div class="col-md-12">
<button type="submit" class="btn btn-primary">Enviar</button>
</div>
</form>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('footer'); ?>
@parent
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.pagina', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>