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

{{ __('Integrations') }}

{!! Form::open([ 'route' => 'integrations.store' ]) !!}
{!! Form::label('api_key', __('Api key'), ['class' => 'control-label']) !!} {!! Form::text('api_key', null, ['class' => 'form-control']) !!}
{!! Form::label('org_id', __('Organization id'), ['class' => 'control-label']) !!} {!! Form::text('org_id', null, ['class' => 'form-control']) !!}
{!! Form::hidden('name', 'Dinero') !!} {!! Form::hidden('api_type', 'billing') !!} {!! Form::submit(__('Update'), ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
{!! Form::open([ ]) !!}
{!! Form::label('api_key', __('Api key'), ['class' => 'control-label']) !!} {!! Form::text('api_key', null, ['class' => 'form-control']) !!}
{!! Form::hidden('name', 'Billy') !!} {!! Form::hidden('api_type', 'billing') !!} {!! Form::submit(__('Update'), ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@stop