{{--
401 — Unauthorized
Use for: routes that require authentication when user is not logged in.
--}}
@extends('errors._layout', [
'error_code' => 401,
'error_title' => 'Sign In Required',
'error_message' => 'Please sign in to access this page.',
])
@section('badge', 'Unauthorized')
@section('primary-cta')
Sign In
@endsection
@section('secondary-ctas')
Create Account
Home
@endsection