@extends('layouts/blankLayout') @section('title', 'Login') @section('page-style') @vite(['resources/assets/vendor/scss/pages/page-auth.scss']) @endsection @section('content')

User Login

Welcome to {{ $hostelSettings->name }}! To protect your privacy and ensure secure access, registration and approval are required before accessing key areas of the site. If you haven't registered yet, we encourage you to do so and take full advantage of what we have to offer.

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@error('username')
{{ $message }}
@enderror
Forgot Password?
@error('password')
{{ $message }}
@enderror

New on our platform? Create an account

auth-tree triangle-bg auth-tree
@endsection @section('page-script') @endsection