@extends('layout') @section('title') Edit {{$company->name}} @endsection @section('pageScripts') @endsection @section('actions')
{{ ($company->active)?"Deactivate":"Activate" }}
@endsection @section('content')
{!! csrf_field() !!}
Company Information
Name
Domain
.{{env('DOMAIN')}}
Free Users Capacity
Location
Industry

{!! csrf_field() !!}
HR Administrators Capacity
Total Employees Capacity
@if(!$company->verified)
{!! csrf_field() !!} @endif
Activation Email Status
@if($company->verified) @else
@endif
@if(!$company->verified)
@endif
Currency
Contact Information
{!! csrf_field() !!}
Transactions @if($registered) Add a Transaction @endif
@if(!$registered)
You can't add another transaction until you set the Registration Transaction status to Closed.
@endif
@foreach($transactions as $item) @if($item->type != 'Registration Transaction') @endif @endforeach
# Amount Status Type Details Created Updated Expires Actions
{{ $index++ }} {{ $item->amount." (".$item->currency.")" }} {{ $item->status }} {{ $item->type }} {{ $item->details }} {{ $item->created_at }} {{ $item->updated_at? $item->updated_at: 'Never' }} {{ $item->expires_at? $item->expires_at: 'Not Specified' }}
Edit @if($item->type != 'Registration Transaction') Delete @endif
@endsection