Manage Office 365 Accounts

@if (session()->has('message')) @endif

{{ $isEditMode ? 'Edit Account' : 'Create Account' }}

@error('account_name') {{ $message }} @enderror
@error('account_type') {{ $message }} @enderror
@error('user_limit') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@error('status') {{ $message }} @enderror

Office 365 Accounts

@foreach($accounts as $account) @endforeach
ID Account Name Account Type User Limit Email Password (Plain) Domains Linked Status Actions
{{ $account->id }} {{ $account->account_name }} {{ $account->account_type }} {{ $account->user_limit }} {{ $account->email }} {{ decrypt($account->password) }} @if($account->domains->isNotEmpty()) @foreach($account->domains as $domain) {{ $domain->domain_name }} @endforeach @else No domains linked @endif {{ ucfirst($account->status) }}