/
home
/
obinna
/
html
/
cravings
/
resources
/
views
/
user
/
Upload File
HOME
@extends('layouts.plains') @section('stylesheets') @parent <style> .mains { padding-top: 100px; } .main { text-align: center; } h1 { font-size: 2rem; } .holder-text { width: 100%; /* height: 500px; */ display:flex; justify-content: center; /* align-items: center; */ text-align: center; } @media (max-width: 767px) { h1 { font-size: 1.3rem; } } .link-button { margin-top: 20px; } </style> @endsection @section('content') <div class="main"> <div class="holder-text"> <h1>{{ $message }}</h1> {{-- <div><a href="/" class="btn btn-primary">Go to Home</a></div> --}} </div> <div class="link-button"> @isset($email) <a href="{{ route('resend_email', ['email' => $email]) }}" class="btn btn-warning">Resend Email</a> @endisset </div> </div> @endsection