@extends('dashboard.index') @section('contentDashboard') @include('dashboard.page_header') @if (count($errors) > 0)
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{!! Form::model($setting, ['method' => 'PATCH','route' => ['settings.update', $setting->id],'enctype'=>'multipart/form-data']) !!}
@lang('dashboard.title_key_name')
@lang('dashboard.title_display_name')
{{--
@lang('dashboard.title_value')
--}}
@lang('dashboard.title_display_order')
@lang('dashboard.title_type')
@lang('dashboard.title_choose')
@foreach ($fieldTypes as $fKEy => $field)
type == $fKEy )? 'selected':'' }}>{{ $field }}
@endforeach
@lang('dashboard.title_group')
@lang('dashboard.title_choose')
@foreach ($groups as $gKEy => $group)
group == $gKEy )? 'selected':'' }}>{{ $group }}
@endforeach
{!! Form::close() !!}
@endsection