srp form
This commit is contained in:
@@ -10,17 +10,18 @@
|
||||
{{ Form::label('FC', 'Fleet Commander') }}
|
||||
{{ Form::text('FC', null, ['class' => 'form-control']) }}
|
||||
{{ Form::label('FleetType', 'Fleet Type') }}
|
||||
{{ Form::radio('FleetType', [
|
||||
'Home Defense',
|
||||
'Legacy Ops',
|
||||
'Strat Op',
|
||||
'CTA'], false, ['class' => 'form-control']) }}
|
||||
{{ Form::select('FleetType', [
|
||||
'Home Defense' => 'Home Defense',
|
||||
'Legacy Ops' => 'Legacy Ops',
|
||||
'Strat Op' => 'Strat Op',
|
||||
'CTA' => 'CTA',
|
||||
], 'None', ['class' => 'form-control']) }}
|
||||
{{ Form::label('zKillboard', 'zKillboard Link') }}
|
||||
{{ Form::text('zKillboard', null, ['class' => 'form-control']) }}
|
||||
{{ Form::label('LossValue', 'Loss Value') }}
|
||||
{{ Form::text('LossValue', null, ['class' => 'form-control', 'placeholder' => '1.00']) }}
|
||||
{{ Form::label('ShipType', 'Type of Ship') }}
|
||||
{{ Form::radio('ShipType', [
|
||||
{{ Form::select('ShipType', [
|
||||
'T1FDC' => 'T1 Frig / Dessie / Cruiser',
|
||||
'T1BC' => 'T1 Battlecruiser',
|
||||
'T2F' => 'T2 Frigate',
|
||||
@@ -29,8 +30,8 @@
|
||||
'RI' => 'Recons / Interdictors',
|
||||
'T2C' => 'T2 Cruiser',
|
||||
'T3C' => 'T3 Cruiser',
|
||||
'COM' => 'Command Ship'
|
||||
], false, ['class' => 'form-control']) }}
|
||||
'COM' => 'Command Ship',
|
||||
], 'None', ['class' => 'form-control']) }}
|
||||
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user