diff --git a/resources/views/flex/list.blade.php b/resources/views/flex/list.blade.php
index c1d6403f6..693ee0d84 100644
--- a/resources/views/flex/list.blade.php
+++ b/resources/views/flex/list.blade.php
@@ -15,7 +15,9 @@
Structure Type |
Cost |
Update |
+ |
Remove? |
+ |
@foreach($structures as $structure)
@@ -28,6 +30,8 @@
{!! Form::open(['action' => 'Flex\FlexAdminController@updateFlexStructure', 'method' => 'POST']) !!}
{{ Form::date('paid_until', \Carbon\Carbon::now()->endOfMonth(), ['class' => 'form-control']) }}
+ |
+
{{ Form::submit('Update', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
|
@@ -38,6 +42,8 @@
{{ Form::hidden('requestor_id', $structure->requestor_id) }}
{{ Form::hidden('requestor_corp_id', $structure->requestor_corp_id) }}
{{ Form::hidden('system_id', $structure->system_id) }}
+
+
{{ Form::submit('Remove', ['class' => 'btn btn-danger']) }}
{!! Form::close() !!}
|