@extends('layouts.app')
@php $editar = $libro->exists; @endphp
@section('titulo', $editar ? 'Editar libro' : 'Nuevo libro')
@section('subtitulo', $editar ? $libro->titulo : 'Registra un título en el catálogo')
@section('contenido')
Volver al catálogo
@if ($errors->any())
@foreach ($errors->all() as $error)- {{ $error }}
@endforeach
@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
@endsection