@extends('layouts.app') @section('title', 'Edit Company') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT') @include('companies._form', ['company' => $company, 'parents' => $parents])
Cancel
@endsection