@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']) }}
{{ 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() !!}
@endsection