{!! Form::label('key', 'Key *') !!} {!! Form::text('key', null, ['readonly' => true, 'class' => 'form-control']) !!}
{!! Form::label('type', 'Type *') !!} {!! Form::select('type', $type_options, null, ['class' => 'form-control']) !!}
{!! Form::label('value', 'Value') !!} {!! Form::text('value', isset($setting) && $setting->type == 'html' ? '' : null, ['class' => 'form-control']) !!}
 
{!! Form::label('html_value', 'HTML Value') !!} {!! Form::textarea('html_value', isset($setting) && $setting->type == 'html' ? $setting->value : null, ['rowspan' => 10, 'disabled' => true, 'class' => 'form-control']) !!}
{!! Form::label('scope', 'Scope *') !!} {!! Form::select('scope', $scope_options, null, ['class' => 'form-control']) !!}
{!! Form::label('description', 'Description') !!} {!! Form::textarea('description', null, ['class' => 'form-control']) !!}
@push('scripts') @endpush