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

{{__('My Courses')}}

@endsection @section('content')
{{ __('Edit 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
@if ($assignment->file)
{{ __('Present File') }} : {{ $assignment->original_filename }}
@endif

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

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