@extends('website.layouts.app') @php $isPlatform = ($panel ?? 'company') === 'platform'; $brand = config('website.brand'); @endphp @section('title', ($isPlatform ? 'Platform Admin Login' : 'Institute Login') . ' – ' . $brand) @section('meta_description', $isPlatform ? 'Sign in to the Learnyst platform admin panel.' : 'Sign in to your Learnyst institute panel to manage courses, learners, and academy settings.') @section('content')

{{ $isPlatform ? 'Platform Admin Login' : 'Institute Login' }}

{{ $isPlatform ? 'Sign in to manage the Learnyst platform, institutes, and global settings.' : 'Sign in to manage your institute — courses, learners, sales, and public profile.' }}

{{ $isPlatform ? 'Platform access' : 'For institutes & creators' }}

{{ $isPlatform ? 'Manage the Learnyst platform' : 'Grow your learning business' }}

{{ $isPlatform ? 'Access platform tools for institutes, users, website content, and system settings.' : 'Open your institute panel to publish courses, track enrollments, handle payments, and update your public institute profile.' }}

    @if($isPlatform)
  • Manage registered institutes
  • Control platform website content
  • Review users and activity logs
  • Configure platform settings
  • @else
  • Build and publish courses
  • Manage learners and enrollments
  • Track sales and insights
  • Update your public institute page
  • @endif

Sign in

{{ $isPlatform ? 'Enter your platform admin credentials.' : 'Enter your institute admin credentials.' }}

@if($errors->any())
{{ $errors->first() }}
@endif @if(session('success'))
{{ session('success') }}
@endif @if(! $isPlatform && app(\App\Services\GoogleOAuthService::class)->isEnabled()) Continue with Google
OR
@endif
@csrf
Forgot password?
@endsection