@extends('layouts.app') @section('title', 'Edit Company') @section('content')

Update Profile: {{ $company->name }}

Administrative Settings

Modify the core details of this organization.

@csrf @method('PUT')
{{ substr($company->name, 0, 1) }}
Entity Branding
@error('name')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
Cancel
Delete this Entity
This will permanently remove the company and all its data.
@csrf @method('DELETE')
@endsection