@extends('layouts/default') {{-- Page title --}} @section('title') @if ($company->id) {{ trans('admin/companies/table.update') }} @else {{ trans('admin/companies/table.create') }} @endif @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content')
@if ($company->id)

{{ $company->name }}

@endif
{!! $errors->first('name', ' :message') !!}

About Companies

Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.

@stop