(I thought it would be cool to show off this blog CSS)
H1
H2
H3
H4
H5
H6
This is a paragraph.
Italic text using asterisks
Italic text using underscores
Bold text using asterisks
Bold text using underscores
Bold and italic text using asterisks
Bold and italic text using underscores
Blockquote
function greet ( name ) {
return `Hello, ${ name }!` ;
}
console. log ( greet ( "World" ));
Column 1 Column 2 Row 1 Col 1 Row 1 Col 2 Row 2 Col 1 Row 2 Col 2
Strikethrough
Checklist:
Unorganized list:
Organized list:
First item
Second item
Subitem
Subitem
Third item
Inline code
// PasswordResetLinkController.php
<? php
namespace App\Http\Controllers\Auth ;
use App\Http\Controllers\Controller ;
use Illuminate\Http\RedirectResponse ;
use Illuminate\Http\Request ;
use Illuminate\Support\Facades\Password ;
use Inertia\Inertia ;
use Inertia\Response ;
class PasswordResetLinkController extends Controller
{
/**
* Show the password reset link request page.
*/
public function create ( Request $request) : Response
{
return Inertia :: render ( 'auth/forgot-password' , [
'status' => $request -> session () -> get ( 'status' ),
]);
}
/**
* Handle an incoming password reset link request.
*
* @throws \Illuminate\Validation\ValidationException
*/
public function store ( Request $request) : RedirectResponse
{
$request -> validate ([
'email' => 'required|email' ,
]);
Password :: sendResetLink (
$request -> only ( 'email' )
);
return back () -> with ( 'status' , __ ( 'A reset link will be sent if the account exists.' ));
}
}
Parent Dir/
├── Child Dir 1/
├── Child Dir 2/
├── Child Dir 3/
└── Child Dir 4/
Website link
Figcaption