@extends('layouts.app') @php $editar = $horario->exists; @endphp @section('titulo', $editar ? 'Editar horario' : 'Nuevo horario') @section('subtitulo', 'Asigna curso, docente, aula, día y hora') @section('contenido')
Volver a horarios @if ($errors->any())
@endif @php $in = 'w-full rounded-xl border border-slate-200 bg-slate-50 px-4 py-2.5 text-sm outline-none focus:border-brand-400 focus:ring-4 focus:ring-brand-100 transition'; @endphp
@csrf @if ($editar) @method('PUT') @endif
@if ($editar) @else @endif
Cancelar
@if ($editar) @endif
@endsection