@extends('backend.layouts.app') @section('page-title', trans('app.general_settings')) @section('page-heading', trans('app.general_settings')) @section('content')
@include('backend.partials.messages')
{!! Form::open(['route' => ['backend.settings.list.update', 'auth'], 'id' => 'general-settings-form']) !!}

@lang('app.general_settings')

{!! Form::select('use_email', ['0' => __('app.no'), '1' => __('app.yes')], settings('use_email'), ['class' => 'form-control']) !!}
{!! Form::select('reset_authentication', ['0' => __('app.no'), '1' => __('app.yes')], settings('reset_authentication'), ['class' => 'form-control']) !!}
{!! Form::select('throttle_enabled', ['0' => __('app.no'), '1' => __('app.yes')], settings('throttle_enabled'), ['class' => 'form-control']) !!}
{!! Form::select('reg_enabled', ['0' => __('app.no'), '1' => __('app.yes')], settings('reg_enabled'), ['class' => 'form-control']) !!}
{!! Form::select('forgot_password', ['0' => __('app.no'), '1' => __('app.yes')], settings('forgot_password'), ['class' => 'form-control']) !!}
{{ Form::close() }}
@stop