Files
w4rpservices/resources/views/structures/admin/choosecorporation.blade.php
drkthunder02 d52a339637 re-ordered all of the view directories
setup corp tax ratio for structure tax helper
modified all view functions for new directory layout
2019-02-13 21:07:21 -06:00

13 lines
487 B
PHP

@extends('layouts.b4')
@section('content')
<div class="container">
<h2>Pick the Corporation</h2>
{!! Form::open(['action' => 'StructureController@displayCorpTaxes', 'method' => 'GET']) !!}
<div class="form-group col-md-4">
{{ Form::label('corpId', 'Corporation') }}
{{ Form::select('corpId', $corps, null, ['class' => 'form-control']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</div>
@endsection