@extends('layouts.simple') @section('title', 'Login Page') @section('content')
branding logo
Login with SKYWATCH
@if(session('error'))
{{ session('error') }}
@endif
{{ csrf_field() }} @if ($errors->has('token_error')) {{ $errors->first('token_error') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
Log in with Single Sign-On
@endsection