@extends('header') @section('head') @parent @stop @section('content') @parent {!! Former::open_for_files() ->addClass('warn-on-exit') !!} {!! Former::populateField('enable_client_portal', intval($account->enable_client_portal)) !!} {!! Former::populateField('enable_client_portal_dashboard', intval($account->enable_client_portal_dashboard)) !!} {!! Former::populateField('client_view_css', $client_view_css) !!} {!! Former::populateField('enable_portal_password', intval($enable_portal_password)) !!} {!! Former::populateField('send_portal_password', intval($send_portal_password)) !!} @if (!Utils::isNinja() && !Auth::user()->account->hasFeature(FEATURE_WHITE_LABEL))
{!! trans('texts.white_label_custom_css', ['link'=>''.trans('texts.white_label_purchase_link').'']) !!}
@endif @include('accounts.nav', ['selected' => ACCOUNT_CLIENT_PORTAL])

{!! trans('texts.client_portal') !!}

{!! Former::checkbox('enable_client_portal') ->text(trans('texts.enable')) ->help(trans('texts.enable_client_portal_help')) !!}
{!! Former::checkbox('enable_client_portal_dashboard') ->text(trans('texts.enable')) ->help(trans('texts.enable_client_portal_dashboard_help')) !!}
{!! Former::checkbox('enable_portal_password') ->text(trans('texts.enable_portal_password')) ->help(trans('texts.enable_portal_password_help')) ->label(' ') !!}
{!! Former::checkbox('send_portal_password') ->text(trans('texts.send_portal_password')) ->help(trans('texts.send_portal_password_help')) ->label(' ') !!}
@if (Utils::hasFeature(FEATURE_CLIENT_PORTAL_CSS))

{!! trans('texts.custom_css') !!}

{!! Former::textarea('client_view_css') ->label(trans('texts.custom_css')) ->rows(10) ->raw() ->autofocus() ->maxlength(60000) ->style("min-width:100%;max-width:100%;font-family:'Roboto Mono', 'Lucida Console', Monaco, monospace;font-size:14px;'") !!}
@endif
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
{!! Former::close() !!} @stop