@extends('back/layouts.app') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@lang('core.add')

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @include('back.includes.breadcrumb',['routes' => [ ['slug' => route('dashboard.courses.index',$site->alias),'name' => $site->name], ['slug' => route('dashboard.sender.index',['site' => $site->alias,'course' => $course_id]),'name' => $course->name.' | '.__('meta.title.sender')], ['name' => __('core.add')]] ])
@if ($errors->has('frequency')) {{ $errors->first('frequency') }} @endif EX: Every 5 minutes (*/5 * * * *)
    # Example of job definition:
    # .---------------- minute (0 - 59)
    # |  .------------- hour (0 - 23)
    # |  |  .---------- day of month (1 - 31)
    # |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
    # |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7)
    # |  |  |  |  |
    # *  *  *  *  * user-name  command to be executed
                                
@if ($errors->has('count')) {{ $errors->first('count') }} @endif
@if ($errors->has('languages')) {{ $errors->first('languages') }} @endif
@stop