@extends('layouts.app') @section('content')
Dais {{-- --}}

Welcome!

@if (\Session::has('success'))
  • {!! \Session::get('success') !!}
@endif @if (\Session::has('errMsg'))
  • {!! \Session::get('errMsg') !!}
@endif
{{ csrf_field() }}
@if (session('email')) {{ session('email') }} @endif
@if (session('password')) {{ session('password') }} @endif
{{-- --}}
@endsection