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