@extends('layouts.b4') @section('content')

Register Structure

{!! Form::open(['action' => 'Structures\RegisterStructureController@storeStructure', 'method' => 'POST']) !!}
{{ Form::label('region', 'Region') }} {{ Form::text('region', '', ['class' => 'form-control']) }} {{ Form::label('system', 'System') }} {{ Form::text('system', '', ['class' => 'form-control']) }} {{ Form::label('structure_name', 'Structure Name') }} {{ Form::text('structure_name', '', ['class' => 'form-control']) }} {{ Form::label('structure_type', 'Structure Type') }} {{ Form::select('structure_type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
@endsection