Add a new software

<%= render 'form_errors' %> <%= form_with( scope: :software, url: softwares_path, class: 'uk-form-horizontal uk-form-width-large', model: @software, local: true ) do |form| %>

<%= form.label :name, class: 'uk-form-label' %>
<%= form.text_field :name, class: 'uk-input' %>

<%= form.label :website, class: 'uk-form-label' %>
<%= form.text_field :website, class: 'uk-input' %>

<%= form.label :repository_type, class: 'uk-form-label' %>
<%= form.select :repository_type, [nil, 'Github'], {}, class: 'uk-select' %>

<%= form.submit class: 'uk-button uk-button-default uk-margin' %>

<% end %>