@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content') @include('network_ops.partials.newip') @include('network_ops.partials.new_notes') @include('network_ops.partials.finance') @include('network_ops.partials.edit-finance')
@include('commons.notifications')
{{-- start of content --}}

{!! Form::model($network_arr, ['method' => 'PATCH', 'url' => ['mnos', $network_arr], 'class' => 'form-horizontal form-label-left', 'files' => 'true' ]) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter name' , 'id' => 'name']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::select('country', $countries ,old('country'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter Country' , 'id' => 'country']) !!} {!! $errors->first('country', '

:message

') !!}
{!! Form::select('account_manager_id', $account_manager ,old('account_manager_id'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter Account Manager' , 'id' => 'account_manager_id']) !!} {!! $errors->first('account_manager_id', '

:message

') !!}
{!! Form::text('contact_person', old('contact_person'), ['class' => 'form-control', 'placeholder'=>'Enter Contact Person' , 'id' => 'contact_person']) !!} {!! $errors->first('contact_person', '

:message

') !!}
{!! Form::text('contact_person_phone', old('contact_person_phone'), ['class' => 'form-control', 'placeholder'=>'Enter Phone Number' , 'id' => 'contactPersonPhone']) !!} {!! $errors->first('contact_person_phone', '

:message

') !!}
{!! Form::text('contact_person_email', old('contact_person_email'), ['class' => 'form-control ', 'placeholder'=>'Enter email' , 'id' => 'email']) !!} {!! $errors->first('contact_person_email', '

:message

') !!}
{!! Form::text('contact_person_skype', old('contact_person_skype'), ['class' => 'form-control', 'placeholder'=>'Enter Skype Name' , 'id' => 'skypeName']) !!} {!! $errors->first('contact_person_skype', '

:message

') !!}

Live: connection_status == 'Active') ? "checked" : ""; ?> />

Pending: connection_status == 'Pending') ? "checked" : ""; ?> />

Inactive connection_status == 'Inactive') ? "checked" : ""; ?> />

{!! Form::text('technical_support_person', old('technical_support_person'), ['class' => 'form-control', 'placeholder'=>'Enter Technical Support Person' , 'id' => 'technicalPerson']) !!} {!! $errors->first('technical_support_person', '

:message

') !!}
{!! Form::text('contact_person_finance', old('contact_person_finance'), ['class' => 'form-control', 'placeholder'=>'Enter Finance Contact Person' , 'id' => 'contactPersonFinance']) !!} {!! $errors->first('contact_person', '

:message

') !!}
{!! Form::select('services[]', $services, $current_services, ['class' => 'form-control typeServices' , 'id' => 'services', 'multiple'=> 'true']) !!} {!! $errors->first('services', '

:message

') !!}
{!! Form::select('support_skype[]', $support_skype_arr, $old_support_skype_arr, ['class' => 'form-control supportSkype', 'id' => 'supportSkype', 'multiple' => 'true']) !!} {!! $errors->first('support_skype', '

:message

') !!}
{!! Form::select('support_emails[]', $support_emails, $old_support_emails, ['class' => 'form-control supportEmail', 'id' => 'supportEmail', 'multiple' => 'true']) !!} {!! $errors->first('support_emails', '

:message

') !!}
{!! Form::select('finance_emails[]', $finance_emails, $old_finance_emails, ['class' => 'form-control financeEmail', 'id' => 'financeEmail', 'multiple' => 'true']) !!} {!! $errors->first('finance_emails', '

:message

') !!}
{!! Form::select('support_phones[]', $support_phones, $old_support_phones, ['class' => 'form-control supportPhones', 'id' => 'supportPhones', 'multiple' => 'true']) !!} {!! $errors->first('support_phones', '

:message

') !!}
{!! Form::text('contract_validity', old('contract_validity'), ['class' => 'form-control', 'placeholder'=>'Enter Contract Date' , 'id' => 'contractValidity']) !!} {!! $errors->first('contract_validity', '

:message

') !!}
{!! Form::select('contract_auto_renew', ['YES' => 'YES','NO' => 'NO'], old('contract_auto_renew'), ['class' => 'form-control ' , 'id' => 'contractAutoRenew' ]) !!} {!! $errors->first('contract_auto_renew', '

:message

') !!}

Recent Payments

@include('network_ops.partials.recent-payments')
{!! Form::select('connection_type[]', $connection_types, $old_connection_type, ['class' => 'form-control' , 'id' => 'connectionType', 'multiple'=> 'true']) !!} {!! $errors->first('connection_type', '

:message

') !!}
{!! Form::text('document_one_name', '', ['class' => 'form-control' , 'id' => 'documentOneName']) !!} {!! $errors->first('document_one_name', '

:message

') !!}
{!! Form::file('document_one', null, ['class' => 'form-control' , 'id' => 'documentOne', 'placeholder' => 'Select file to upload']) !!} {!! $errors->first('document_one', '

:message

') !!}
{!! Form::text('document_two_name', '', ['class' => 'form-control' , 'id' => 'documentTwoName']) !!} {!! $errors->first('document_two_name', '

:message

') !!}
{!! Form::file('document_two', null, ['class' => 'form-control' , 'id' => 'documentTwo', 'placeholder' => 'Select file to upload']) !!} {!! $errors->first('document_two', '

:message

') !!}

IP Addresses Add IP

@foreach($ip_addresses as $row) @endforeach
Service IP Port Status
{{ $row->service }} {{ $row->ip_address }} {{ $row->port }} {{ $row->status }}

Notes Add Notes

@foreach($notes_arr as $row) @endforeach
Services Notes Date Added
{{ $row->services }} {{ $row->notes_body }} {{ $row->created_at }}
{!! Form::select('rate_type', $rate_types, old('rate_type'), ['class' => 'form-control' , 'id' => 'rateTypeSel']) !!} {!! $errors->first('rate_type', '

:message

') !!}
{!! Form::text('buying_rate', old('buying_rate'), ['class' => 'form-control' , 'id' => 'buyingRateFlat']) !!} {!! $errors->first('buying_rate', '

:message

') !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection