{{__('BitGo')}}

{!! Form::open(['url' => route('admin.settings.general.update'), 'class' => 'form form-horizontal', 'method' => 'POST']) !!}

{{__('BitGo')}}

{!! Form::label('BITGO_ENV', 'Environment', ['class' => 'col-md-3']) !!}
{!! Form::select('BITGO_ENV', ['test' => 'Test', 'prod' => 'Production'], $env['BITGO_ENV']['value'], ['is' => 'select2', 'class' => 'form-control']) !!} {{__('Ensure that you have started the server with the right environment.')}}
{!! Form::label('BITGO_TOKEN', 'Token', ['class' => 'col-md-3']) !!}
{!! Form::text('BITGO_TOKEN', $env['BITGO_TOKEN']['value'], ['class' => 'form-control']) !!} {{__('A long-lived token is required. Refer to the documentation')}}
{!! Form::label('BITGO_HOST', 'Host', ['class' => 'col-md-3']) !!}
{!! Form::text('BITGO_HOST', $env['BITGO_HOST']['value'], ['class' => 'form-control']) !!} {{__('With protocol, http or https')}}
{!! Form::label('BITGO_PORT', 'Port', ['class' => 'col-md-3']) !!}
{!! Form::text('BITGO_PORT', $env['BITGO_PORT']['value'], ['class' => 'form-control']) !!}
{!! Form::close() !!}