@extends('adminlte::page') @section('title', 'Editar equipo') @section('content_header')

Editar equipo

@stop @section('content') @if($errors->any())
Corrige los siguientes errores:
@endif
@csrf @method('PUT')
@php $colorActual = old('color', $equipo->color ?? '#ffffff'); if (empty($colorActual)) { $colorActual = '#ffffff'; } if (!str_starts_with($colorActual, '#')) { $colorActual = '#' . $colorActual; } @endphp
Selecciona el color del equipo. El código se actualizará automáticamente.
@stop @section('js') @stop