@extends('adminlte::page')
@section('title', 'Dashboard')
@section('content_header')
@stop
@section('content')
@if(Session::has('error'))
@php
$data = Session::get('error');
@endphp
@if (is_array($data))
@foreach ($data as $msg)
{{ $msg }}
@endforeach
@else
{{ $data }}
@endif
@endif
@stop
@section('css')
@stop
@section('js')
@stop