{!! Form::model($agreement, ['method' => 'PATCH', 'action' => ['AgreementController@confirm', $agreement->id], 'id' => 'fm_agreement_confirm_date', 'class' => 'form-horizontal', 'role' => 'form']) !!} {!! Form::hidden('id', null, ['id' => 'id']) !!}
{!! Form::label('confirm_date', 'Confirm Date:', ['class' => 'control-label col-sm-4']) !!}
{!! Form::formattedDate('confirm_date', ['class' => 'form-control', 'type'=> 'text', "required" => 'required']) !!}
@if ($agreement->has_capital_invoice and !$agreement->rescheduled)
{!! Form::label('create_invoice', 'Create invoice now?', ['class' => 'control-label col-sm-4']) !!}
{!! Form::checkbox('create_invoice',1, true, ['id' => 'cb_create_invoice']) !!}
@endif {!! Form::close() !!}