@extends('layouts.main')
@section('title')
Dashboard
@endsection
@section('style')
@endsection
@section('content')
@if($errors->any())
@foreach ($errors->all() as $error)
{{$error}}
@endforeach
@endif
@if ($message = Session::get('success'))
{{$message}}
@endif
@endsection
@section('script')
@endsection