@extends('layouts.app', ['title' => __('Company Management')]) @section('content') @include('companies.partials.header', ['title' => $title])

{{ __('Company Management') }}

{{ __('Company information') }}
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif

{{ __('Owner information') }}
@if ($errors->has('name_owner')) {{ $errors->first('name_owner') }} @endif
@if ($errors->has('email_owner')) {{ $errors->first('email_owner') }} @endif
@include('partials.input',['type'=>"text", 'name'=>'Owner Phone','id'=>"phone_owner",'placeholder'=>"Owner Phone here",'required'=>true,'value'=>""]) @if (isset($_GET['cloneWith'])) @endif
@include('layouts.footers.auth') @endsection