@extends('front.layout.app') @section('title', 'Login') @section('content')
@include('front.partials.sidemenu')

Login

Existing Users:

To login, please enter your username and password.

@if(Session::has('success'))
{!! Session::get('success') !!}
@endif
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror

Lost your password? Click here to reset it

Note: If you are an existing client, kindly re-register yourself.

New Users:

If you are not registered, please click the Register button below.

Register
@endsection