@extends('layouts.app') @section('title', 'Edit Company - ' . $company->name) @section('content')
@csrf @method('PUT')
@error('name') {{ $message }} @enderror
@error('domain') {{ $message }} @enderror Unique identifier for the company (letters, numbers, hyphens only)
@error('active') {{ $message }} @enderror
@if($company->logo_path && file_exists(public_path($company->logo_path)))

Current Logo:

@else

Current Logo:

@endif
@error('logo') {{ $message }} @enderror Leave empty to keep current logo. Max file size: 2MB
Cancel
@can('manage companies')

Danger Zone

Delete Company

Once you delete a company, there is no going back. This will permanently delete the company and all associated data.

@csrf @method('DELETE')
@endcan
@endsection