11 lines
310 B
PHP
11 lines
310 B
PHP
@extends('layouts.guest')
|
|
|
|
@section('title', 'Subscription Failed')
|
|
|
|
@section('content')
|
|
<section>
|
|
<h1>Subscription Error</h1>
|
|
<p>Something went wrong while marking your interest. Please try again, or contact me at {{ config('blog.contact_email') }} if the problem persists.</p>
|
|
</section>
|
|
@endsection
|