@extends('layouts.guest')
@section('title', 'Selecionar Empresa — ERP-PLUS')
@push('styles')
@endpush
@section('content')
Logado como {{ auth()->user()->name }}
@if (session('error'))
{{ session('error') }}
@endif
@if ($companies->isEmpty())
Nenhuma empresa vinculada
Entre em contato com o administrador do sistema.
@else
@foreach ($companies as $company)
@php
$sub = $company->subscription;
$plan = $sub?->plan;
$active = $company->isAccessible() && ! $company->isBlocked();
$initials = strtoupper(substr($company->name, 0, 2));
@endphp
@endforeach
@endif
@endsection