@if($edit_data > 1)
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => array('custom-result-setting/update'), 'method' => 'PUT', 'enctype' => 'multipart/form-data']) }}
@else
@if(userPermission('custom-result-setting/store'))
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'custom-result-setting/store','method' => 'POST', 'enctype' => 'multipart/form-data']) }}
@endif
@endif
@lang('exam.setup_final_exam_rule')
@php
$average=0;
@endphp
@foreach($exams as $exam)
@lang('exam.exam_type') {{$exam->title}} (%)
@endforeach
@lang('exam.total_mark') 100%
@php
$tooltip = "";
if(userPermission('custom-result-setting/store')){
$tooltip = "";
}else{
$tooltip = "You have no permission to update";
}
@endphp
{{ Form::close() }}