@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} | Admit new student @endsection @section('content')

Upload Students Mean Tests

Import student mean test allocations from the excel file of this format{{ link_to(route('dashboard'), 'Required Excel File Format') }} .Select the Excel file to upload and click the button upload to upload student mean tests.

{{ Form::open(['route' => 'finances.store-student-mean-test', 'class' => 'create-product', 'method' => 'POST', 'role' => 'form', 'enctype' => 'multipart/form-data']) }}
{{ Form::file('mean-test-excel', ['class' => 'file']) }}
{{ Form::button('Upload', ['type' => 'submit', 'class' => 'btn btn-warning']) }}
@endsection @section('scripts') @endsection