Advertisement
hamjoricantiq

Untitled

Apr 4th, 2020
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. @if(session('success'))
  2. <div class="alert alert-success">
  3.     {{ session('success') }}
  4. </div>
  5. @endif
  6.  
  7. @if(session('error'))
  8. <div class="alert alert-error">
  9.     {{ session('error') }}
  10. </div>
  11. @endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement