@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.setting.title_singular') }}
@csrf
@if($errors->has('key'))

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

@endif

{{ trans('cruds.setting.fields.key_helper') }}

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

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

@endif

{{ trans('cruds.setting.fields.value_helper') }}

@endsection