@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.subscribers.index',['site' => $site->alias,'course' => $course_id]),'name' => $course->name.' | '.__('meta.title.subscribers')], ['name' => __('core.add')]] ])
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@stop