Skip to content

Instantly share code, notes, and snippets.

@inxilpro
Created October 31, 2016 14:31
Show Gist options
  • Select an option

  • Save inxilpro/22d31a4fa7e9e3ff276ab8810c0322bd to your computer and use it in GitHub Desktop.

Select an option

Save inxilpro/22d31a4fa7e9e3ff276ab8810c0322bd to your computer and use it in GitHub Desktop.
<form>
@statusalert
My form ...
</form>
function showForm(Request $request) {
$request->session()->now('status-danger', 'There was an error!');
}
// Or ...
function processForm(Request $request) {
if ($failed_for_some_reason) {
return redirect()->back()->flash('status-danger', 'Oops! There was an error.');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment