12 lines
411 B
PHP
12 lines
411 B
PHP
|
|
@extends('layouts.guest')
|
||
|
|
|
||
|
|
@section('title', 'Un-Subscription Failed')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<section style="max-width: 1100px;">
|
||
|
|
<h1>Error Attempting to Unsubscribe</h1>
|
||
|
|
<aside>(yikes, I am embarrased)</aside>
|
||
|
|
<p>Something went wrong while removing your interest from my list. Please try again, or contact me at {{ config('blog.contact_email') }} if the problem persists.</p>
|
||
|
|
</section>
|
||
|
|
@endsection
|