@extends('layouts.content') @section('content')

Groups | {{ $option }}

{!! Form::model($group, ['url' => 'groups/save/'.$id, 'autocomplete' => 'off']) !!} {!! Form::hidden('option', $option) !!}
{!! Form::text('g_name', NULL, ['class' => 'form-control', 'required', $option == 'View' ? 'disabled' : '']) !!}
{!! Form::select('d_id', $division, NULL, ['class' => 'form-control', 'required', $option == 'View' ? 'disabled' : '']) !!}
@if($option == 'View')
@foreach($group->users as $user) @endforeach
@endif @if($option != 'View')
{!! Form::button('check Save', ['class' => 'btn btn-primary btn-fill text-center pull-right', 'type' => 'submit']) !!}
@endif {!! Form::close() !!}
@stop