{{-- Layout --}} @extends('teacher.layout.layout') {{-- Page Title --}} @section('title', 'GAS LMS | Preview Assignment from file') {{-- Breadcrumb section --}} @section('breadcrumb') @include('components._breadcrumb', ['items' => ['Homework' => route('teacher.course.assignment.index', $assignment->course_offering_id)]]) @endsection {{-- Content --}} @section('content')

{{ $assignment->title }}

Download the file below, then upload your answers:
@foreach ($assignment_attachments as $attachment)

{{ $attachment->file_name }}

{{ $attachment->type }}
Download
@endforeach

Upload Answer

@csrf

Choose files or drag and drop files here
Submit
@endsection