@section('content') {{ HTML::style('css/ui/jquery-ui-1.10.3.custom.min.css') }} {{ HTML::style('public/css/bootstrap-wysihtml5.css') }} @section('scripts') @stop

Offerings>{{ $title }}

{{ $title }}

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
{{ Form::model($offering, $method) }}
Cancel
{{ Form::select('type_id', $types, null, array('id' => 'input-type', 'required' => 'true', 'class' => 'form-control')) }}
@if(empty($privateoffer->security->companyName)) {{ Form::text('name', null, array('id' => 'input-name', 'placeholder' => 'Company name', 'required' => 'true', 'class' => 'form-control')) }} @else {{ $privateoffer->security->companyName }} @endif
{{ Form::text('size', null, array('id' => 'input-size', 'placeholder' => 'Offering Size', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('per_share', null, array('id' => 'input-per_share', 'placeholder' => 'Price per share', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('number_of_shares', null, array('id' => 'number_of_shares', 'placeholder' => 'Number of shares', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::textarea('unit_descritption', null, array('placeholder' => 'Unit descritption', 'class' => 'form-control')) }}
{{ Form::text('investments', null, array('id' => 'investments', 'placeholder' => 'Investments', 'class' => 'form-control')) }} @if(!empty($offering->offering_id)) + ${{ number_format($offering->investments()->where('order_status', '=', 'complete')->sum('amount'), 2) }} @endif
@if(empty($offering->min_units)) {{ Form::text('min_units', null, array('id' => 'input-min_units', 'placeholder' => 'Minimum Units', 'required' => 'true', 'class' => 'form-control')) }} @else {{ $offering->min_units }} @endif
{{ Form::text('starts_at', $starts_at, array('id' => 'input-starts_at', 'placeholder' => 'Offering Period Starts', 'required' => 'true', 'class' => 'form-control date', 'autocomplete' => 'off')) }}
@if(empty($privateoffer->closingDate)) {{ Form::text('ends_at', $ends_at, array('id' => 'input-ends_at', 'placeholder' => 'Offering Period Ends', 'required' => 'true', 'class' => 'form-control date', 'autocomplete' => 'off')) }} @else {{ date("m/d/Y", strtotime($privateoffer->closingDate)) }} @endif
{{ Form::text('color', null, array('id' => 'input-color', 'placeholder' => 'Color', 'required' => 'true', 'class' => 'form-control')) }}
@if(!empty($offering->video_image) && file_exists(public_path().'/uploads/video_image/'.$offering->video_image))
@endif
{{ Form::file('video_image'); }}
{{ Form::text('video', null, array('id' => 'video-description', 'placeholder' => 'Video', 'class' => 'form-control input-video')) }}
{{ Form::textarea('description', null, array('placeholder' => 'Description', 'required' => 'true', 'class' => 'form-control', 'id' => 'redactor')) }}
{{ Form::select('accreditationSetting', array('X' => 'NA', 'N' => 'NOT ACCREDITATED ONLY', 'A' => 'NO ACCREDITATION REQUIREMENTS', 'I' => 'ACCREDITATED BY INCOME ONLY', 'W' => 'ACCREDITATED BY WORTH ONLY', 'E' => 'ACCREDITATED BY INCOME OR WORTH', 'B' => 'ACCREDITATED BY INCOME AND WORTH', 'Q' => 'QUALIFIED CLIENT'), !empty($privateoffer->accreditationSetting)?$privateoffer->accreditationSetting:null, array('id' => 'accreditationSetting', 'class' => 'form-control click-tooltip', 'data-toggle' => 'tooltips', 'data-placement' => 'top', 'data-html' => 'true', 'data-trigger' => 'focus', 'title' => '
  • NA - Investors cannot invest to the offer.
  • NOT ACCREDITATED ONLY - Only investors who are not accredited can invest to the offer.
  • NO ACCREDITATION REQUIREMENTS - Both accredited and not-accredited investors can invest to the offer.
  • ACCREDITATED BY INCOME ONLY - Only investors who are accredited by income criteria can invest to the offer.
  • ACCREDITATED BY WORTH ONLY - Only investors who are accredited by net worth can invest to the offer.
  • ACCREDITATED BY INCOME OR WORTH - Only investors who are accredited by income or net worth can invest to the offer.
  • ACCREDITATED BY INCOME AND WORTH - Only investors who are accredited by income and net worth can invest to the offer.
  • QUALIFIED CLIENT - Only investors who are qualified based on accreditation verification can invest to the offer.
')) }}
{{ Form::select('blueSkyedStates[]', $states, !empty($privateoffer->blueSkyedStates)?$privateoffer->blueSkyedStates:null, array('id' => 'blueSkyedStates', 'class' => 'form-control', 'multiple')) }}
{{ Form::select('clientsHaveAccess', array('1' => 'Yes', '0' => 'No'), isset($privateoffer->clientsHaveAccess)?$privateoffer->clientsHaveAccess:null, array('id' => 'clientsHaveAccess', 'class' => 'form-control')) }}
@if(empty($privateoffer->creatingFirmRepresentativeOid))