@extends('admin.template.master') @section('title')

Group

@endsection @section('main-content')

Entry

{!! Form::open(['url' => '/admin/groups']) !!}
{!! Form::label('name','Name') !!} {!! Form::text('group_name','',['class' => 'form-control', 'placeholder' => 'Name']) !!} @if ($errors->has('group_name')) {!! $errors->first('group_name') !!} @endif
{!! Form::label('status','Status') !!} {!! Form::select('group_is_exist',['1' => 'Active','0' => 'Inactive'],null,['class' =>'form-control']) !!} @if ($errors->has('group_is_exist')) {!! $errors->first('group_is_exist') !!} @endif
{!! Form::close() !!}
@endsection