def create
    @administrator = Administrator.new(administrator_params)

    if @administrator.save
      redirect_to administrators_path, notice: 'Administratoren blev oprettet.'
    else
      render action: 'new'
    end