@extends('themes.base.layout') @section('title', trans('admin.edit_group_title', ['group_name' => $group->name])) @section('breadcrumb') @endsection @section('content')

@yield('title')

@lang('admin.edit_group_intro')


{!! Form::model($group, ['route' => ['groups.update', $group->id], 'method' => 'PUT']) !!}
{!! Form::label('name', trans('forms.name_label'), ['class' => 'control-label']) !!} {!! Form::text('name', old('name'), ['class' => 'form-control']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
@lang('forms.cancel_action') {!! Form::submit(trans('forms.save_action'), ['class' => 'btn btn-success']) !!}
{!! Form::close() !!}
@endsection