@extends('admin.layouts.master') @section('title','Create a new private course') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Add') }} {{ __('Private Course') }}
{{ __('Back') }}
{{ csrf_field() }}
{{ __('Select') }} {{ __('Course') }}:
*
@foreach ($courses as $cat) @if($cat->status == 1)
{{ $cat->title }}
@endif @endforeach
{{ __('Hide from ') }} {{ __('Users') }}:
*
@foreach ($users as $user) @if($user->status == 1)
{{ $user->fname }}
@endif @endforeach
@if(Auth::User()->role == "admin")
{{ __('Status') }}:
@endif
{{ __('Reset') }}
{{ __('Create') }}
@endsection @section('scripts') @endsection