@extends('layouts.agency') @section('title', 'Create customer') @section('content')
@if ($errors->has('error'))
@endif {{--
--}} {{--

Edit Customer

--}} {{--
--}}

Edit Customer

-

{{$customer->company_name}}

Customer Details

@csrf
@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@if ($errors->has('location_id')) {{ $errors->first('location_id') }} @endif
@if ($errors->has('domain')) {{ $errors->first('domain') }} @endif
@forelse (old('domain', $customer->domains) as $i => $domain)
@empty
@endforelse
@if ($errors->has('webhook_url')) {{ $errors->first('webhook_url') }} @endif
@csrf @method('DELETE')
@endsection