@extends($layout) @section('header_scripts') @stop @section('content')

{{ $title }}

Title  :  {{ucwords($details->title)}}
Subject  :  {{ucwords($details->subject_title)}}
Submited By  :  {{ucwords($details->name)}}

@if(!empty($details->video_name))
Video
@if(!empty($details->video_name))
Invalid Video Format!!!
@else
No Video Found!!!
@endif
@endif @if(!empty($details->file_name))
PDF
@if(!empty($details->file_name)) @else
No PDF Found!!!
@endif
@endif @if(!empty($details->audiofile))
Audio
@if(!empty($details->audiofile)) @else
No Audio Found!!!
@endif
@endif
Description

{{ucwords($details->description)}}

{!! Form::open(array('url' => URL_STUDENT_UPLOAD_ONLINESTUDY, 'method' => 'POST', 'name'=>'formAssigment ', 'novalidate'=>'','files'=>TRUE )) !!}
@if(empty($details->user_comments))
{{ Form::label('user_comments', getphrase('Message')) }} * {{ Form::textarea('user_comments', $value = null , $attributes = array('class'=>'form-control', 'rows'=>'5', 'placeholder' => 'Message','id'=>'user_comments', 'ng-model'=>'user_comments', 'required'=> 'true', 'ng-class'=>'{"has-error": formQuiz.user_comments.$touched && formQuiz.user_comments.$invalid}')) }}
{!! getValidationMessage()!!}
@else
{{ Form::label('user_comments', getphrase('Your Message')) }}
{{ $details->user_comments }}
@endif
@if(empty($details->user_comments))
@endif {!! Form::close() !!}
@endsection @section('footer_scripts') @stop