flex structure form

This commit is contained in:
2020-02-04 00:04:58 -06:00
parent 5ae722b6a4
commit 4f4cb8ee39

View File

@@ -33,6 +33,10 @@
<td>
{!! Form::open(['action' => 'Flex\FlexAdminController@updateFlexStructure', 'method' => 'POST']) !!}
{{ Form::date('paid_until', \Carbon\Carbon::now()->endOfMonth(), ['class' => 'form-control']) }}
{{ Form::hidden('requestor_id', $structure->requestor_id) }}
{{ Form::hidden('requestor_corp_id', $structure->requestor_corp_id) }}
{{ Form::hidden('system_id', $structure->system_id) }}
{{ Form::hidden('structure_type', $structure->structure_type) }}
{{ Form::submit('Update', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</td>