@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 }}

@csrf
@error('name')
{{ $message }}
@enderror
@error('codigo')
{{ $message }}
@enderror
Volver
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} {{-- --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush