@extends('themes.default1.layouts.agentblank') @section('Users') class="active" @stop @section('user-bar') active @stop @section('organizations') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content')

{{Lang::get('lang.organization')}}

{{Lang::get('lang.create_user')}}
@if(Session::has('success'))
Success! {{Session::get('success')}}
@endif @if(Session::has('fails'))
Alert! Failed. {{Session::get('fails')}}
@endif @foreach($orgs as $org) @endforeach
{{Lang::get('lang.name')}} {{Lang::get('lang.user')}} {{Lang::get('lang.created')}} {{Lang::get('lang.last_updated')}} {{Lang::get('lang.action')}}
{{$org -> name }} {{$org -> created_at}} {{$org -> updated_at}} {!! Form::open(['route'=>['organizations.destroy', $org->id],'method'=>'DELETE']) !!}
{!! Form::button(' Delete', ['type' => 'submit', 'class'=> 'actions-line icon-trash', 'onclick'=>'return confirm("Are you sure?")']) !!}
{!! Form::close() !!}
@section('FooterInclude') @stop @stop @stop @section('FooterInclude') @stop