@extends('public.layout')
@section('title')
Your crypto trading advisor | myfo
@endsection
@section('content')
@foreach (['primary', 'secondary', 'success', 'danger', 'warning', 'info', 'light', 'dark'] as $msg)
@if(Session::has('alert-'.$msg))
{{ Session::get('alert-'. $msg) }}
@endif
@endforeach
@if (!Auth::user())
@else
@endif
@endsection