@extends('layouts.app')
{{-- Customize layout sections --}}
@section('subtitle', 'Nuevo programa')
@section('content_header_title', 'Programas')
@section('content_header_subtitle', 'Crear nuevo programa')
{{-- Content body: main page content --}}
@section('content_body')
@if($errors->any())
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
Programas para {{ $university->name }}
@stop
{{-- Push extra CSS --}}
@push('css')
{{-- Add here extra stylesheets --}}
{{-- --}}
@endpush
{{-- Push extra scripts --}}
@push('js')
@endpush