@extends('dashboard.index') @section('contentDashboard') @include('dashboard.page_header') @if (count($errors) > 0)
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{!! Form::model($resultGroup, ['method' => 'PATCH','route' => ['result-groups.update', $resultGroup->id]]) !!}
@lang('dashboard.label_create_result_group')
@lang('dashboard.title_title'):
@lang('dashboard.title_display_order'):
{!! Form::close() !!}
@endsection