@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.popupText.title_singular') }}
@method('POST') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.popupText.fields.name_helper') }}
@if($errors->has('text'))
{{ $errors->first('text') }}
@endif {{ trans('cruds.popupText.fields.text_helper') }}
@endsection @section('scripts') @endsection