11 lines
231 B
PHP
11 lines
231 B
PHP
|
|
@extends('layouts.guest')
|
||
|
|
|
||
|
|
@section('title', 'Subscription Confirmed')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<section>
|
||
|
|
<h1>Subscription Confirmed</h1>
|
||
|
|
<p>You'll be the first to know about future posts. Thank you.</p>
|
||
|
|
</section>
|
||
|
|
@endsection
|