{!!Form::radio('schedule_type', 'exact_time', ($schedule->type == 'exact_time'), [])!!} {!!Form::label(null, null)!!}
{!!Form::label('exact_time', trans('front.exact_time'))!!}
{!!Form::label('exact_time[time]', trans('front.time'))!!} {!!Form::text('exact_time[time]', $schedule->schedule_at, ['class' => 'datetimepicker form-control'])!!}
{!!Form::radio('schedule_type', 'hourly', ($schedule->type == 'hourly'), [])!!} {!!Form::label(null, null)!!}
{!!Form::label('hourly', trans('front.hourly'))!!}
{!!Form::radio('schedule_type', 'daily', ($schedule->type == 'daily'), [])!!} {!!Form::label(null, null)!!}
{!!Form::label('daily', trans('validation.attributes.daily'))!!}
{!!Form::radio('schedule_type', 'weekly', ($schedule->type == 'weekly'), [])!!} {!!Form::label(null, null)!!}
{!!Form::label('weekly', trans('validation.attributes.weekly'))!!}
{!!Form::radio('schedule_type', 'monthly', ($schedule->type == 'monthly'), [])!!} {!!Form::label(null, null)!!}
{!!Form::label('monthly', trans('front.monthly'))!!}