@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.survey.title_singular') }}
@method('POST') @csrf
@if($errors->has('customer'))
{{ $errors->first('customer') }}
@endif {{ trans('cruds.survey.fields.customer_helper') }}
@if($errors->has('value_1'))
{{ $errors->first('value_1') }}
@endif {{ trans('cruds.survey.fields.value_1_helper') }}
@if($errors->has('value_2'))
{{ $errors->first('value_2') }}
@endif {{ trans('cruds.survey.fields.value_2_helper') }}
@endsection