@extends('horarios.layout') @section('horarios.m_header') @endsection @section('horarios.breadcrumbs')

@lang('Horario')

@endsection @section('horarios.content')

@lang('Edit') @lang('Horario') #{{$horario->id}}

@method('PUT') @csrf
@if($errors->has('titulo'))
{{$errors->first('titulo')}}
@endif
@if($errors->has('fecha'))
{{$errors->first('fecha')}}
@endif
@if($errors->has('dia_semana'))
{{$errors->first('dia_semana')}}
@endif
@if($errors->has('hora_inicio'))
{{$errors->first('hora_inicio')}}
@endif
@if($errors->has('hora_fin'))
{{$errors->first('hora_fin')}}
@endif
@endsection @section('horarios.scripts') @endsection