@extends('layouts.app')
@section('title', 'New Application')
@section('content')
@include('layouts.partials.page_header', [
'title' => 'New Application',
'showSocial' => false,
'breadcrumbs' => [
['label' => 'Home', 'url' => route('home')],
['label' => 'Applications', 'url' => route('portal.applications')],
['label' => 'Apply', 'url' => ''],
],
])
@php
$selectedScholarship = old('scholarship_id') ? $scholarships->firstWhere('id', (int) old('scholarship_id')) : null;
@endphp
@push('styles')
@endpush
@endsection