@extends('layouts.app') @section('styles') @endsection @section('content')

{{ trans('panel.site_title') }}

@if(session('message')) @endif @error('google')
{{ $message }}
@enderror @if(env('MANUAL_LOGIN_ENABLE', true))
@csrf
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endif
@endsection