- {!! Form::open(['action' => 'Structures\StructureAdminController@storeTaxRatio', 'method' => 'POST']) !!}
-
- {{ Form::label('corpId', 'Corporation ID:') }}
- {{ Form::text('corpId', '', ['class' => 'form-control']) }}
-
-
- {{ Form::label('corporation', 'Corporation Name') }}
- {{ Form::text('corporation', '', ['class' => 'form-control']) }}
-
-
- {{ Form::label('type', 'Structure Type') }}
- {{ Form::select('type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }}
-
-
- {{ Form::label('ratio', 'Tax Ratio') }}
- {{ Form::text('ratio', '', ['class' => 'form-control']) }}
-
- {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
- {!! Form::close() !!}
-