@extends('layouts.app') @section('content') @if(Session::has('message'))
{{ Session::get('message')}}
@endif @if(Session::has('error_message'))
{{ Session::get('error_message')}}
@endif @if (count($errors) > 0)
@endif

Organizations

@foreach($orglist as $olist)

{{ $olist->org_name }}

{{ $addr1 }} {{ $addr2 }}
{{ $city }}{{ $olist->state }} {{$olist->zip}}

{!! Form::open(array('url' => 'myshop', 'class' => 'form-horizontal view_form', 'files' => true )) !!} {!! Form::submit('View Classes >>', ['class' => 'btn btn-primary btn-md']) !!} {!! Form::close() !!}
@endforeach
@stop