@extends('layouts.master') @section('title') {{ __('Manage Exams') }} @endsection @section('content')

{{ __('Create Exams') }}

{!! Form::text('name', '', [ 'id' => 'name', 'placeholder' => trans('Exam Name'), 'class' => 'form-control', 'required' => true, ]) !!}
{!! Form::textarea('description', '', [ 'id' => 'description', 'placeholder' => trans('Exam Description'), 'class' => 'form-control', 'rows' => '3', ]) !!}

{{ __('List Exams') }}

{!! Form::select('medium_id', $mediums, null, ['class' => 'form-control', 'id' => 'filter_medium_id', 'placeholder' => __('all')]) !!}
{{ __('id') }} {{ __('no.') }} {{ __('name') }} {{ __('description') }} {{ __('Class') }} {{ __('timetable_created') }} {{ __('Publish Result') }} {{ __('created_at') }} {{ __('updated_at') }} {{ __('action') }}
@endsection @section('script') @endsection