{!! Form::model($customer_group, ['method' => 'PUT', 'route' => ['admin.customer.groups.update', $customer_group->id]]) !!}

Edit Customer Group

{!! Form::text('group_name', old('group_name'), ['class' => 'form-control', 'required' => true]) !!} {!! Form::label('group_name', 'Group Name', ['class' => 'floating-label main-label']) !!}

@if($errors->has('group_name'))

{{ $errors->first('group_name') }}

@endif
{!! Form::button(trans('global.app_save'), ['class' => 'btn btn-info', 'type' => 'submit']) !!} {!! Form::close() !!}