@extends('accounts.nav') @section('content') @parent {{ Former::open()->addClass('col-md-8 col-md-offset-2') }} {{ Former::populate($account) }} {{ Former::populateField('notify_sent', intval(Auth::user()->notify_sent)) }} {{ Former::populateField('notify_viewed', intval(Auth::user()->notify_viewed)) }} {{ Former::populateField('notify_paid', intval(Auth::user()->notify_paid)) }} {{ Former::legend('Payment Gateway') }} @if ($accountGateway) {{ Former::populateField('gateway_id', $accountGateway->gateway_id) }} @foreach ($accountGateway->fields as $field => $junk) @if ($field == 'testMode' || $field == 'developerMode') @if ($config->$field) {{-- Former::populateField($accountGateway->gateway_id.'_'.$field, true ) --}} @endif @else {{ Former::populateField($accountGateway->gateway_id.'_'.$field, $config->$field) }} @endif @endforeach @endif {{ Former::select('gateway_id')->label('Provider')->addOption('', '') ->fromQuery($gateways, 'name', 'id')->onchange('setFieldsShown()'); }} @foreach ($gateways as $gateway) @endforeach {{ Former::actions( Button::lg_success_submit('Save')->append_with_icon('floppy-disk') ) }} {{ Former::close() }} @stop