You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					37 lines
				
				1.5 KiB
			
		
		
			
		
	
	
					37 lines
				
				1.5 KiB
			| 
								 
											9 months ago
										 
									 | 
							
								@extends('layouts.plantilla')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@section('titulo')
							 | 
						||
| 
								 | 
							
								    Nuevo Usuario
							 | 
						||
| 
								 | 
							
								@endsection
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								@section('contenido')
							 | 
						||
| 
								 | 
							
								    <div class="container">
							 | 
						||
| 
								 | 
							
								        <div class="row">
							 | 
						||
| 
								 | 
							
								            <div class="col-md-12">
							 | 
						||
| 
								 | 
							
								                <h3>Nuevo Usuario</h3>
							 | 
						||
| 
								 | 
							
								            </div>
							 | 
						||
| 
								 | 
							
								            <di class="col-md-6 offset-3">
							 | 
						||
| 
								 | 
							
								                <div class="bg-light rounded h-100 p-4">
							 | 
						||
| 
								 | 
							
								                    <form action="{{route('usuarios.store')}}" method="post">
							 | 
						||
| 
								 | 
							
								                        @csrf
							 | 
						||
| 
								 | 
							
								                        <div class="mb-3">
							 | 
						||
| 
								 | 
							
								                            <label for="Name" class="form-label">Nombre</label>
							 | 
						||
| 
								 | 
							
								                            <input type="text" class="form-control" id="Name" name="name">
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                        <div class="mb-3">
							 | 
						||
| 
								 | 
							
								                            <label for="email" class="form-label">Correo</label>
							 | 
						||
| 
								 | 
							
								                            <input type="email" class="form-control" id="email" name="email">
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                        <div class="mb-3">
							 | 
						||
| 
								 | 
							
								                            <label for="password" class="form-label">Contraseña</label>
							 | 
						||
| 
								 | 
							
								                            <input type="password" class="form-control" id="password" name="password">
							 | 
						||
| 
								 | 
							
								                        </div>
							 | 
						||
| 
								 | 
							
								                        <button type="submit" class="btn btn-primary">Agregar</button>
							 | 
						||
| 
								 | 
							
								                        <a href="{{route('usuarios')}}" class="btn btn-danger">Cancelar</a>
							 | 
						||
| 
								 | 
							
								                    </form>
							 | 
						||
| 
								 | 
							
								                </div>
							 | 
						||
| 
								 | 
							
								            </di>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								@endsection
							 |