@extends('layout.default')
@section('content')
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if(Session::has('flash_msg'))
{!! Session::get('flash_msg')!!}
@else
@endif
@endsection
@section('script')
@endsection