@extends('layouts.master-without-nav') @section('title') @lang('translation.signin') @endsection @section('content')

Procurement, Assets & Logistics — Requisition to Delivery & Payment

Welcome Back

Sign in to your PAL Centre account

@if(session('status'))
{{ session('status') }}
@endif
@csrf
Suppliers: sign in with your TRN. @error('email') {{ $message }} @enderror
@if(Route::has('password.request')) @endif
@error('password') {{ $message }} @enderror
@if(app()->environment('local')) @php // TEMP / DEMO ONLY — quick one-click login, ordered by the procurement flow. $flowOrder = [ \App\Models\User::ROLE_STATION, \App\Models\User::ROLE_AREA, \App\Models\User::ROLE_PAL, \App\Models\User::ROLE_PROCUREMENT, \App\Models\User::ROLE_SUPPLIER, \App\Models\User::ROLE_BUDGET_FINANCE, \App\Models\User::ROLE_ADMIN, ]; $demoUsers = \App\Models\User::where('is_active', true)->get() ->sortBy(fn ($u) => [array_search($u->role, $flowOrder), $u->name]) ->values(); @endphp
DEMO
Quick login — click a user (follows the workflow order)

Temporary demo helper — visible in local only.

@endif

Accounts are provisioned by your administrator.

@endsection @section('script') @endsection