@extends('backEnd.master') @section('title') @lang('exam.send_marks_by_sms') @endsection @section('mainContent')

@lang('exam.send_marks_via_SMS')

@if(userPermission('send_marks_by_sms')) {{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'send_marks_by_sms_store', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'search_student']) }} @endif
@if (moduleStatusCheck('University')) @includeIf('university::common.session_faculty_depart_academic_semester_level', ['required' => ['USN','UF', 'UD', 'UA', 'US', 'USL', 'USEC'], 'hide' => ['USUB'] ])
{{ Form::select('exam_type',[""=>__('exam.select_exam').'*'], null , ['class' => 'primary_select form-control'. ($errors->has('exam_type') ? ' is-invalid' : ''), 'id'=>'select_exam_typ_subject']) }}
loader
@if ($errors->has('exam')) {{ @$errors->first('exam') }} @endif
@if ($errors->has('receiver')) {{ $errors->first('receiver') }} @endif
@else
@if ($errors->has('exam')) {{ $errors->first('exam') }} @endif
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('receiver')) {{ $errors->first('receiver') }} @endif
@endif @php $tooltip = ""; if(userPermission('send_marks_by_sms')){ $tooltip = ""; }else{ $tooltip = "You have no permission to add"; } @endphp
{{ Form::close() }}
@endsection