Note that there are some explanatory texts on larger screens.

plurals
  1. POTrouble using simple_form between input and =f.input
    primarykey
    data
    text
    <p><img src="https://i.stack.imgur.com/R5tKC.png" alt="enter image description here"></p> <p>this is the screenshot of below slim simple_form form. this shows properly. But this gives me type nil error.</p> <pre><code> = simple_form_for :identity, :url =&gt; '/auth/identity/register' do |f| h2 Create New Account .form-actions .control-group .controls .input-prepend span.add-on i.icon-user input type="text", label:false, :class =&gt; "inline" .control-group .controls .input-prepend span.add-on i.icon-user input type="text" id="" name="" f:email .control-group .controls .input-prepend span.add-on i.icon-user input type="text" id="" name="" f:password .control-group .controls .input-prepend span.add-on i.icon-user input type="text" id="" name="" f:password_confirmation .control-group .controls = f.button :submit, :class =&gt; 'btn-primary' </code></pre> <p><img src="https://i.stack.imgur.com/TAFKq.png" alt="enter image description here"></p> <p>this is screenshot of below code. this works fine(not gives nil type error. because it takes model fields.) But appearence is broken down.</p> <pre><code>= simple_form_for :identity, :url =&gt; '/auth/identity/register' do |f| h2 Create New Account .form-actions .control-group .controls .input-prepend span.add-on i.icon-user =f.input :name, label:false .control-group .controls .input-prepend span.add-on i.icon-user = f.input :email, label:false .control-group .controls .input-prepend span.add-on i.icon-user = f.input :password, label:false .control-group .controls .input-prepend span.add-on i.icon-user = f.input :password_confirmation, label:false .control-group .controls = f.button :submit, :class =&gt; 'btn-primary' </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload