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

@lang('global.dashboard-widgets.title')

{!! Form::open(['method' => 'POST', 'route' => ['admin.home.dashboard-widgets-changeorder-store', $role_id ],'class'=>'formvalidation', 'id' => 'frmAccount']) !!}
@lang('global.app_edit')
@lang('global.dashboard-widgets.role') : {{$role->title}}
@can('contact_edit')
 @lang('global.dashboard-widgets.title')
@endcan
    @forelse( $widgets as $widget )
  • {{$widget->title}} - ( @lang('global.dashboard-widgets.fields.type') : {{ucfirst($widget->type)}} @lang('global.dashboard-widgets.fields.columns') : {{ucfirst($widget->columns)}} )
  • @empty @endforelse
{!! Form::submit(trans('global.app_save'), ['class' => 'btn btn-danger wave-effect saveAccount']) !!} {!! Form::close() !!} @stop @section('javascript') @include('dashboard-parts.widgets-changeorder-scripts') @endsection