diff --git a/resources/views/structurerequest/requeststructure.blade.php b/resources/views/structurerequest/requeststructure.blade.php index 9fc6a4050..3ab16881b 100644 --- a/resources/views/structurerequest/requeststructure.blade.php +++ b/resources/views/structurerequest/requeststructure.blade.php @@ -1,37 +1,39 @@ @extends('layouts.b4') @section('content') -
-
-

Structure Request Form

-
-
- {!! Form::open(['action' => 'Logistics\StructureRequestController@storeForm', 'method' => 'POST']) !!} -
- {{ Form::label('corporation_name', 'Corporation Name') }} - {{ Form::text('corporation_name', '', ['class' => 'form-control']) }} +
+
+
+

Structure Request Form

-
- {{ Form::label('system', 'System') }} - {{ Form::text('system', '', ['class' => 'form-control']) }} +
+ {!! Form::open(['action' => 'Logistics\StructureRequestController@storeForm', 'method' => 'POST']) !!} +
+ {{ Form::label('corporation_name', 'Corporation Name') }} + {{ Form::text('corporation_name', '', ['class' => 'form-control']) }} +
+
+ {{ Form::label('system', 'System') }} + {{ Form::text('system', '', ['class' => 'form-control']) }} +
+
+ {{ Form::label('structure_size', 'Structure Size') }} + {{ Form::select('structure_size', ['M', 'L', 'XL'], null, ['class' => 'form-control']) }} +
+
+ {{ Form::label('structure_type', 'Structure Type') }} + {{ Form::select('structure_type', ['Flex', 'Citadel', 'Refinery', 'Engineering'], null, ['class' => 'form-control']) }} +
+
+ {{ Form::label('requested_drop_time', 'Requested Drop Time') }} + {{ Form::dateTime('requested_drop_time', \Carbon\Carbon::now()->toDateTimeString(), ['class' => 'form-control']) }} +
+
+ {{ Form::label('requester', 'Requester') }} + {{ Form::text('requester', '', ['class' => 'form-control']) }} +
+ {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} + {!! Form::close() !!}
-
- {{ Form::label('structure_size', 'Structure Size') }} - {{ Form::select('structure_size', ['M', 'L', 'XL'], null, ['class' => 'form-control']) }} -
-
- {{ Form::label('structure_type', 'Structure Type') }} - {{ Form::select('structure_type', ['Flex', 'Citadel', 'Refinery', 'Engineering'], null, ['class' => 'form-control']) }} -
-
- {{ Form::label('requested_drop_time', 'Requested Drop Time') }} - {{ Form::dateTime('requested_drop_time', \Carbon\Carbon::now()->toDateTimeString(), ['class' => 'form-control']) }} -
-
- {{ Form::label('requester', 'Requester') }} - {{ Form::text('requester', '', ['class' => 'form-control']) }} -
- {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} - {!! Form::close() !!}
@endsection \ No newline at end of file