{{ $contract->subject }}
{{ $contract->program->name ?? 'N/A' }}
{{$contract->status}}
@if ($stage->id)
{!! Form::model($stage, ['route' => ['admin.contracts.stages.update', ['contract' => $contract, 'stage' => $stage, 'tableId' => request()->tableId]],
'method' => 'PUT',
'id' => 'stage-update-form',
'data-stage-id' => $stage->id,
]) !!}
@else
{!! Form::model($stage, ['route' => ['admin.contracts.stages.store', ['contract' => $contract, 'tableId' => request()->tableId]], 'method' => 'POST']) !!}
@endif
{{ Form::label('name', __('Name'), ['class' => 'col-form-label']) }}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('Name')]) !!}
{!! Form::close() !!}