@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.panel.title_singular') }}
@csrf
@if($errors->has('board'))
{{ $errors->first('board') }}
@endif {{ trans('cruds.panel.fields.board_helper') }}
@if($errors->has('variable'))
{{ $errors->first('variable') }}
@endif {{ trans('cruds.panel.fields.variable_helper') }}
@if($errors->has('json'))
{{ $errors->first('json') }}
@endif {{ trans('cruds.panel.fields.json_helper') }}
@endsection