@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.setting.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.setting.fields.name_helper') }}
@if($errors->has('value'))
{{ $errors->first('value') }}
@endif {{ trans('cruds.setting.fields.value_helper') }}
@endsection