deviseでコントローラーをカスタマイズしていたらエラーがいくつもでたのでその対応をメモします。
ActionController::InvalidAuthenticityToken
以下のように書き換え。
app/controller/application_controller.rb
protect_from_forgery with: :exception
↓
protect_from_forgery with: :null_session
Can't verify CSRF token authenticity
以下を追記。
app/view/*/_form.html.erb
<%= hidden_field_tag :authenticity_token, form_authenticity_token -%>