@extends('layouts.boxes') @section('content')
{{-- Mensajes de éxito --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Errores de validación --}} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- TAB FORMULARIO --}}

Registro de Usuario

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- TAB LISTA --}}
Usuarios existentes
@forelse($users as $user) @empty @endforelse
ID Nombre correo Accion
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{-- Botón Eliminar --}}
@csrf @method('DELETE')
No hay templates creados aún
@endsection