@extends('layouts.app') @include('css_material') @section('content')
@if(Session::has('data'))

{{ Session::get('data')['message'] }}

@endif @if ($errors->any()) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach @endif
{{--
--}}
@endsection