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

{{ $fields->frequency.' | '.__('core.edit') }}

@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.test_results')], ['name' => $fields->frequency.' | '.__('core.edit')]] ])
{!! Form::model($fields,['method' => 'PUT','route' => ['dashboard.sender.update',$site->alias,$fields->course_id,$fields->id],'class'=>'form-horizontal form-label-left']) !!}
@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
@stop