@extends('themes.default1.admin.layout.admin') @section('Settings') active @stop @section('settings-bar') active @stop @section('cron') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content') {!! Form::model($emails,['url' => 'post-scheduler', 'method' => 'PATCH']) !!}

{{Lang::get('lang.cron')}}

{!! Form::submit(Lang::get('lang.save'),['class'=>'btn btn-primary'])!!}
@if(Session::has('success'))
Success! {!!Session::get('success')!!}
@endif @if(Session::has('fails'))
Fail! {!!Session::get('fails')!!}
@endif
 {!!Lang::get('lang.crone-url-message')!!} {!!Lang::get('lang.click')!!} {!!Lang::get('lang.check-cron-set')!!}
{!! Form::label('email_fetching',Lang::get('lang.email_fetch')) !!}
{!! Form::checkbox('email_fetching',1,true) !!} {{Lang::get('lang.fetch_auto-corn')}}
{!! Form::label('email_fetching',Lang::get('lang.notification-email')) !!}
{!! Form::checkbox('notification_cron',1,true) !!} {{Lang::get('lang.cron_notification')}}
@stop