I am having a problem to insert data into database using laravel












0














I am having an issue regarding post route in laravel. Everytime i try to post data into my model, I get a 419 error i.e my session has been expired. What would be the solution to this problem?



public function store(Request $request)
{
$this->validate($request, [
'title' => 'required',
'body' => 'required',
]);

$post = new Post;
$post->title = $request->input('title');
$post->body = $request->input('body');
$post->save();

return redirect('/posts')->with('success', 'Post created');
}


Following is the blade code



{!! Form::open(['action' => 'postsController@store', 'method' => 'POST']) !!}

<div class='form-group'>
{{ Form::label('title','Title') }}
{{ Form::text('title','',['class'=>'form-control','placeholder'=>'Title']) }}
</div>

<div class='form-group'>
{{ Form::label('body','Body') }}
{{ Form::textarea('body','',['id'=>'article-ckeditor','class'=>'form-control','placeholder'=>'Body Text']) }}
</div>

{{ Form::submit('Submit',['class'=>'btn btn-primary']) }}

{!! Form::close() !!}









share|improve this question





























    0














    I am having an issue regarding post route in laravel. Everytime i try to post data into my model, I get a 419 error i.e my session has been expired. What would be the solution to this problem?



    public function store(Request $request)
    {
    $this->validate($request, [
    'title' => 'required',
    'body' => 'required',
    ]);

    $post = new Post;
    $post->title = $request->input('title');
    $post->body = $request->input('body');
    $post->save();

    return redirect('/posts')->with('success', 'Post created');
    }


    Following is the blade code



    {!! Form::open(['action' => 'postsController@store', 'method' => 'POST']) !!}

    <div class='form-group'>
    {{ Form::label('title','Title') }}
    {{ Form::text('title','',['class'=>'form-control','placeholder'=>'Title']) }}
    </div>

    <div class='form-group'>
    {{ Form::label('body','Body') }}
    {{ Form::textarea('body','',['id'=>'article-ckeditor','class'=>'form-control','placeholder'=>'Body Text']) }}
    </div>

    {{ Form::submit('Submit',['class'=>'btn btn-primary']) }}

    {!! Form::close() !!}









    share|improve this question



























      0












      0








      0







      I am having an issue regarding post route in laravel. Everytime i try to post data into my model, I get a 419 error i.e my session has been expired. What would be the solution to this problem?



      public function store(Request $request)
      {
      $this->validate($request, [
      'title' => 'required',
      'body' => 'required',
      ]);

      $post = new Post;
      $post->title = $request->input('title');
      $post->body = $request->input('body');
      $post->save();

      return redirect('/posts')->with('success', 'Post created');
      }


      Following is the blade code



      {!! Form::open(['action' => 'postsController@store', 'method' => 'POST']) !!}

      <div class='form-group'>
      {{ Form::label('title','Title') }}
      {{ Form::text('title','',['class'=>'form-control','placeholder'=>'Title']) }}
      </div>

      <div class='form-group'>
      {{ Form::label('body','Body') }}
      {{ Form::textarea('body','',['id'=>'article-ckeditor','class'=>'form-control','placeholder'=>'Body Text']) }}
      </div>

      {{ Form::submit('Submit',['class'=>'btn btn-primary']) }}

      {!! Form::close() !!}









      share|improve this question















      I am having an issue regarding post route in laravel. Everytime i try to post data into my model, I get a 419 error i.e my session has been expired. What would be the solution to this problem?



      public function store(Request $request)
      {
      $this->validate($request, [
      'title' => 'required',
      'body' => 'required',
      ]);

      $post = new Post;
      $post->title = $request->input('title');
      $post->body = $request->input('body');
      $post->save();

      return redirect('/posts')->with('success', 'Post created');
      }


      Following is the blade code



      {!! Form::open(['action' => 'postsController@store', 'method' => 'POST']) !!}

      <div class='form-group'>
      {{ Form::label('title','Title') }}
      {{ Form::text('title','',['class'=>'form-control','placeholder'=>'Title']) }}
      </div>

      <div class='form-group'>
      {{ Form::label('body','Body') }}
      {{ Form::textarea('body','',['id'=>'article-ckeditor','class'=>'form-control','placeholder'=>'Body Text']) }}
      </div>

      {{ Form::submit('Submit',['class'=>'btn btn-primary']) }}

      {!! Form::close() !!}






      php laravel






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 '18 at 20:12









      Ross Wilson

      15.7k22539




      15.7k22539










      asked Nov 21 '18 at 19:44









      Hassaan FarooqHassaan Farooq

      1




      1
























          1 Answer
          1






          active

          oldest

          votes


















          6














          Add a CSRF field to the form:



          {!! csrf_field() !!}


          VerifyCsrfToken middleware (which is defaultly included in Laravel app) requires that each POST request contains a pre-generated CSRF token. This increases security (see CSRF Wiki page). If you want to disable this, you can either delete/stop using the VerifyCsrfToken middleware, or you can list URIs that should be excluded from CSRF verification (see documentation).






          share|improve this answer























          • Can you explain why this could solve the problem?
            – Nico Haase
            Nov 21 '18 at 19:53










          • @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
            – Martin Heralecký
            Nov 21 '18 at 20:02










          • If this is an absolute need, it would be good if you'd add that to your answer
            – Nico Haase
            Nov 21 '18 at 20:03










          • It should automatically do this, or at least it used to.
            – aynber
            Nov 21 '18 at 20:11










          • @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
            – Tim Lewis
            Nov 21 '18 at 20:16











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419477%2fi-am-having-a-problem-to-insert-data-into-database-using-laravel%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          6














          Add a CSRF field to the form:



          {!! csrf_field() !!}


          VerifyCsrfToken middleware (which is defaultly included in Laravel app) requires that each POST request contains a pre-generated CSRF token. This increases security (see CSRF Wiki page). If you want to disable this, you can either delete/stop using the VerifyCsrfToken middleware, or you can list URIs that should be excluded from CSRF verification (see documentation).






          share|improve this answer























          • Can you explain why this could solve the problem?
            – Nico Haase
            Nov 21 '18 at 19:53










          • @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
            – Martin Heralecký
            Nov 21 '18 at 20:02










          • If this is an absolute need, it would be good if you'd add that to your answer
            – Nico Haase
            Nov 21 '18 at 20:03










          • It should automatically do this, or at least it used to.
            – aynber
            Nov 21 '18 at 20:11










          • @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
            – Tim Lewis
            Nov 21 '18 at 20:16
















          6














          Add a CSRF field to the form:



          {!! csrf_field() !!}


          VerifyCsrfToken middleware (which is defaultly included in Laravel app) requires that each POST request contains a pre-generated CSRF token. This increases security (see CSRF Wiki page). If you want to disable this, you can either delete/stop using the VerifyCsrfToken middleware, or you can list URIs that should be excluded from CSRF verification (see documentation).






          share|improve this answer























          • Can you explain why this could solve the problem?
            – Nico Haase
            Nov 21 '18 at 19:53










          • @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
            – Martin Heralecký
            Nov 21 '18 at 20:02










          • If this is an absolute need, it would be good if you'd add that to your answer
            – Nico Haase
            Nov 21 '18 at 20:03










          • It should automatically do this, or at least it used to.
            – aynber
            Nov 21 '18 at 20:11










          • @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
            – Tim Lewis
            Nov 21 '18 at 20:16














          6












          6








          6






          Add a CSRF field to the form:



          {!! csrf_field() !!}


          VerifyCsrfToken middleware (which is defaultly included in Laravel app) requires that each POST request contains a pre-generated CSRF token. This increases security (see CSRF Wiki page). If you want to disable this, you can either delete/stop using the VerifyCsrfToken middleware, or you can list URIs that should be excluded from CSRF verification (see documentation).






          share|improve this answer














          Add a CSRF field to the form:



          {!! csrf_field() !!}


          VerifyCsrfToken middleware (which is defaultly included in Laravel app) requires that each POST request contains a pre-generated CSRF token. This increases security (see CSRF Wiki page). If you want to disable this, you can either delete/stop using the VerifyCsrfToken middleware, or you can list URIs that should be excluded from CSRF verification (see documentation).







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 21 '18 at 20:42

























          answered Nov 21 '18 at 19:47









          Martin HeraleckýMartin Heralecký

          2,8612934




          2,8612934












          • Can you explain why this could solve the problem?
            – Nico Haase
            Nov 21 '18 at 19:53










          • @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
            – Martin Heralecký
            Nov 21 '18 at 20:02










          • If this is an absolute need, it would be good if you'd add that to your answer
            – Nico Haase
            Nov 21 '18 at 20:03










          • It should automatically do this, or at least it used to.
            – aynber
            Nov 21 '18 at 20:11










          • @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
            – Tim Lewis
            Nov 21 '18 at 20:16


















          • Can you explain why this could solve the problem?
            – Nico Haase
            Nov 21 '18 at 19:53










          • @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
            – Martin Heralecký
            Nov 21 '18 at 20:02










          • If this is an absolute need, it would be good if you'd add that to your answer
            – Nico Haase
            Nov 21 '18 at 20:03










          • It should automatically do this, or at least it used to.
            – aynber
            Nov 21 '18 at 20:11










          • @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
            – Tim Lewis
            Nov 21 '18 at 20:16
















          Can you explain why this could solve the problem?
          – Nico Haase
          Nov 21 '18 at 19:53




          Can you explain why this could solve the problem?
          – Nico Haase
          Nov 21 '18 at 19:53












          @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
          – Martin Heralecký
          Nov 21 '18 at 20:02




          @NicoHaase Because Laravel defaultly needs every POST request to have this csrf-token, which increases security. The code responsible for this is in the VerifyCsrfToken middleware.
          – Martin Heralecký
          Nov 21 '18 at 20:02












          If this is an absolute need, it would be good if you'd add that to your answer
          – Nico Haase
          Nov 21 '18 at 20:03




          If this is an absolute need, it would be good if you'd add that to your answer
          – Nico Haase
          Nov 21 '18 at 20:03












          It should automatically do this, or at least it used to.
          – aynber
          Nov 21 '18 at 20:11




          It should automatically do this, or at least it used to.
          – aynber
          Nov 21 '18 at 20:11












          @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
          – Tim Lewis
          Nov 21 '18 at 20:16




          @aynber Maybe it used to, but I've been working with Laravel since 4.2, and I've always had to manually include the csrf token in POST forms.
          – Tim Lewis
          Nov 21 '18 at 20:16


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419477%2fi-am-having-a-problem-to-insert-data-into-database-using-laravel%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          404 Error Contact Form 7 ajax form submitting

          How to know if a Active Directory user can login interactively

          TypeError: fit_transform() missing 1 required positional argument: 'X'