Skip to content

Instantly share code, notes, and snippets.

View abanoubha's full-sized avatar
🎯
taking teeny-tiny steps towards my goal

Abanoub Hanna abanoubha

🎯
taking teeny-tiny steps towards my goal
View GitHub Profile
@abanoubha
abanoubha / _messages.blade.php
Created March 10, 2021 04:58 — forked from YavorK/_messages.blade.php
Laravel handle-all-flash-messages partial-view
@if ($errors->any())
<div class="alert alert-danger">
@foreach ($errors->all() as $error)
{!! $error !!}<br/>
@endforeach
</div>
@endif
@if (Session::get('flash_success'))
<div class="alert alert-success">
@if(is_array(Session::get('flash_success')))