@extends('layouts.app') @section('title', $contract?->exists ? 'Edit contract' : 'New contract') @section('content')

{{ $contract?->exists ? 'Edit '.$contract->contract_number : 'New contract' }}

Terms agreed with the customer, and the revenue they commit to.

Back
@csrf @if ($contract?->exists) @method('PUT') @endif

Parties

@error('customer_id'){{ $message }}@enderror
Optional. Signing the contract will align the service's own contract term. @error('service_id'){{ $message }}@enderror
@error('title'){{ $message }}@enderror
@error('type'){{ $message }}@enderror

Commercials

@error('monthly_value'){{ $message }}@enderror
@error('term_months'){{ $message }}@enderror
@error('starts_on'){{ $message }}@enderror
@error('ends_on'){{ $message }}@enderror
@error('notice_period_days'){{ $message }}@enderror

Terms

@error('terms'){{ $message }}@enderror
Cancel
@endsection