@extends('layouts.master') @section('title', 'Scholarship Application') @section('content') @include('layouts.header') @include('layouts.header-sub')

แบบฟอร์มสมัครทุน : {{ $scholarship->name_en }}

@csrf {{-- common hidden --}} {{-- load form by scholarship type --}} @includeWhen($scholarship->scholarship_type_id == 1, 'applications.forms.gac') @includeWhen($scholarship->scholarship_type_id == 2, 'applications.forms.needy') @includeWhen($scholarship->scholarship_type_id == 3, 'applications.forms.oap') @includeWhen($scholarship->scholarship_type_id == 4, 'applications.forms.byadmin')
@include('layouts.footer') @endsection