@extends('voyager::master') @section('css') @stop @section('page_title', __('voyager::generic.' . ($edit ? 'edit' : 'add')) . ' ' . $dataType->getTranslatedAttribute('display_name_singular')) @section('page_header')

{{ __('voyager::generic.' . ($edit ? 'edit' : 'add')) . ' ' . $dataType->getTranslatedAttribute('display_name_singular') }}

@include('voyager::multilingual.language-selector') @stop @section('content')
@if($add)
@else
@endif @if($date)
@if ($edit) {{ method_field('PUT') }} @endif {{ csrf_field() }}
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php $dataTypeRows = $dataType->{$edit ? 'editRows' : 'addRows'}; @endphp @include('voyager::daily-data-entry.partials.supervisors')
@endif
@stop @section('javascript') @stop