{{ Form::text('timezone', null, [ 'class' => 'form-control' . ($errors->has('timezone') ? ' is-invalid' : ''), 'placeholder' => __('Timezone') ]) }} @if ($errors->has('timezone'))
{{ $errors->first('timezone') }}
@endif
{{ Form::select('currency', $currencies, null, ['class' => 'form-control' . ($errors->has('currency') ? ' is-invalid' : ''), 'placeholder' => __('Currency')]) }} @if ($errors->has('currency'))
{{ $errors->first('currency') }}
@endif
{{ Form::number('ltv', null, [ 'class' => 'form-control' . ($errors->has('ltv') ? ' is-invalid' : ''), 'placeholder' => __('Lifetime Sales in :cur', ['cur' => $customer->currency]) ]) }} @if ($errors->has('ltv'))
{{ $errors->first('ltv') }}
@endif