@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'Nueva asignatura') @section('content_header_title', 'Asignaturas') @section('content_header_subtitle', 'Crear nueva asignatura') {{-- Content body: main page content --}} @section('content_body')
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Asignaturas para {{ $program->name }}

@csrf
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} {{-- --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush