@php $customizerHidden = 'customizer-hide'; @endphp @extends('layouts/layoutMaster') @section('title', 'Login') @section('vendor-style') @vite(['resources/assets/vendor/libs/@form-validation/form-validation.scss']) @endsection @section('page-style') @vite(['resources/assets/vendor/scss/pages/page-auth.scss']) @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/@form-validation/popular.js', 'resources/assets/vendor/libs/@form-validation/bootstrap5.js', 'resources/assets/vendor/libs/@form-validation/auto-focus.js']) @endsection @section('page-script') @vite(['resources/assets/js/pages-auth.js']) @endsection {{-- Toaster --}} @section('vendor-style') @vite(['resources/assets/vendor/libs/toastr/toastr.scss', 'resources/assets/vendor/libs/animate-css/animate.scss']) @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/toastr/toastr.js']) @endsection @section('content') {{-- It is used for showing success message of login -- Toast bar --}} @if (session()->has('success'))
@endif {{-- It is used for showing Error message-- Toast bar --}} @if (session()->has('error'))
@endif
IRINS Logo
{{-- It is used for showing success message of login -- Toast bar --}} @if ($errors->has('Unauthorizes'))
@endif @if ($errors->has('error'))
@endif

Welcome to {{ config('variables.templateName') }}!

Please sign-in to your account and start the adventure

@csrf
@endsection