• {{ __('Admin') }}
  • {{ __('Settings') }}
  • {{ __('Detail') }}
  • Edit

    {!!Form::model($setting, ['route' => ['admin.settings.update', ['setting' => $setting->id]], 'method' => 'put'])!!}
    {{Form::label('key', 'Key (Upper case, no spaces)', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('key', $setting->key, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900', $errors->has('menu_key') ? 'is-invalid' : null])}} @if($errors->has('key'))

    {{$errors->first('key')}}

    @endif
    {{Form::label('value', 'Value', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('value', $setting->value, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('value') ? 'is-invalid' : null)])}} @if($errors->has('value'))

    {{$errors->first('value')}}

    @endif
    {{Form::label('description', 'Description', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('description', $setting->description, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('description') ? 'is-invalid' : null)])}} @if($errors->has('description'))

    {{$errors->first('description')}}

    @endif
    {{Form::label('tenant', 'Tenant', ['class'=>'control-label dark:text-slate-300 text-l'])}} {{Form::text('tenant', $setting->tenant, ['class' => 'text-l dark:bg-slate-800 dark:text-slate-300 dark:border-slate-900 '.($errors->has('tenant') ? 'is-invalid' : null)])}} @if($errors->has('tenant'))

    {{$errors->first('tenant')}}

    @endif
    {!!Form::close()!!}