@extends('layouts.organization') @section('breadcrumb')

{{ __('Assignment') }}

@endsection @section('content')
{{ __('Create New Assignment') }}

{{ $course->title }}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('marks')) {{ $errors->first('marks') }} @endif
{{ __('Assignment Details') }}
@if ($errors->has('description')) {{ $errors->first('description') }} @endif

{{ __('Accepted files') }} (PDF or ZIP)

@if ($errors->has('file')) {{ $errors->first('file') }} @endif
@endsection