@extends('layouts.app') @section("script") @section('content') @include('globalSettings.header')
Current Global Settings
{!! Form::open(['route' => 'globalSettings.store', 'class' => 'col s12', 'files' => true]) !!} {!! Form::token() !!} {{ csrf_field() }}
  • date_rangeDaily Goals
  • favoriteGems Awarded on Referral
    {!! Form::number('gems_on_referral',$gems_on_referral, ['id' => 'gems_on_referral']) !!}
  • enhanced_encryptionPrivacy Policy
    {!! Form::textarea('privacy_policy',$privacy_policy, ['id' => 'privacy_policy', 'class' => 'materialize-textarea']) !!}
  • bookTerms and Conditions
    {!! Form::textarea('tnc',$tnc, ['id' => 'tnc', 'class' => 'materialize-textarea']) !!}
{!! Form::button('Submitsend', ['type' => 'submit', 'class' => 'btn']); !!} {!! Form::close() !!}
@endsection