@extends('backend.layouts.app') @section('title', @$data['title']) @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@csrf
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('start_time')) {{ $errors->first('start_time') }} @endif
@if ($errors->has('end_time')) {{ $errors->first('end_time') }} @endif
{{ _trans('common.Number Of Calls You Did Today?') }} @if ($errors->has('calls_made'))
{{ $errors->first('calls_made') }} @endif
@if ($errors->has('positive_leads')) {{ $errors->first('positive_leads') }} @endif
@if ($errors->has('total_sales')) {{ $errors->first('total_sales') }} @endif
@if ($errors->has('pending_and_leads_other_note')) {{ $errors->first('pending_and_leads_other_note') }} @endif
@if ($errors->has('recovery_today_other_note')) {{ $errors->first('recovery_today_other_note') }} @endif
{{ _trans('common.Write a general summary of your work activity today') }} @if ($errors->has('daily_report_summary'))
{{ $errors->first('daily_report_summary') }} @endif
@if ($errors->has('complaints_questions_comments')) {{ $errors->first('complaints_questions_comments') }} @endif
@if ($errors->has('file')) {{ $errors->first('file') }} @endif
@if ($errors->has('how_was_your_day_mark')) {{ $errors->first('how_was_your_day_mark') }} @endif
{{ _trans('common.Back to list') }}
@endsection @section('script') @endsection