Last active
May 15, 2026 00:50
-
-
Save codigoconjuan/abce7f1c8d8bba8818abe0d0f8e9fd52 to your computer and use it in GitHub Desktop.
Página de Success o Error Al Pagar Cashtrackr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('layouts.app') | |
| @section('title') | |
| Error al Pagar | |
| @endsection | |
| @section('dashboard-contents') | |
| <div class="rounded-md bg-red-50 p-4 dark:bg-red-500/15 dark:outline dark:outline-red-500/25"> | |
| <div class="flex"> | |
| <div class="shrink-0"> | |
| <svg viewBox="0 0 20 20" fill="currentColor" data-slot="icon" aria-hidden="true" class="size-5 text-red-400"> | |
| <path d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16ZM8.28 7.22a.75.75 0 0 0-1.06 1.06L8.94 10l-1.72 1.72a.75.75 0 1 0 1.06 1.06L10 11.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L11.06 10l1.72-1.72a.75.75 0 0 0-1.06-1.06L10 8.94 8.28 7.22Z" clip-rule="evenodd" fill-rule="evenodd" /> | |
| </svg> | |
| </div> | |
| <div class="ml-3"> | |
| <h3 class="text-sm font-medium text-red-800 dark:text-red-200">Error al Realizar el Pago</h3> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="mt-2 text-xl text-gray-500">Hubo un error, vuelve a intentarlo. <a class="text-amber-500" href={{route('dashboard')}}>Volver a Presupuestos</a></p> | |
| @endsection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('layouts.app') | |
| @section('title') | |
| Pago Exitoso | |
| @endsection | |
| @section('dashboard-contents') | |
| <div class="rounded-md bg-green-50 p-4 dark:bg-green-500/10 dark:outline dark:outline-green-500/20"> | |
| <div class="flex"> | |
| <div class="shrink-0"> | |
| <svg viewBox="0 0 20 20" fill="currentColor" data-slot="icon" aria-hidden="true" class="size-5 text-green-400"> | |
| <path d="M10 18a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm3.857-9.809a.75.75 0 0 0-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 1 0-1.06 1.061l2.5 2.5a.75.75 0 0 0 1.137-.089l4-5.5Z" clip-rule="evenodd" fill-rule="evenodd" /> | |
| </svg> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm font-medium text-green-800 dark:text-green-300">Pago Exitoso</p> | |
| </div> | |
| </div> | |
| </div> | |
| <h1 class="font-bold text-4xl mt-5">Ahora eres PRO</h1> | |
| <p class="mt-2 text-xl text-gray-500">Tu cuenta ya es PRO, explora todos los beneficios en tus <a class="text-amber-500" href={{route('dashboard')}}>Presupuestos</a></p> | |
| @endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment