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

{{ __('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], ['name' => __('core.add')]] ]) --}}
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('alias')) {{ $errors->first('alias') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('html')){{ $errors->first('html') }}@endif
@if ($errors->has('meta_description')){{ $errors->first('meta_description') }}@endif
{{--
@if ($errors->has('languages')) {{ $errors->first('languages') }} @endif
--}}
@stop