@extends('layout') @section('header')
Solicitudes / Editar solicitud
@endsection @section('content') @include('error')
Título
title : old("title") }}"/> @if($errors->has("title"))
{{ $errors->first("title") }}
@endif
Descripción
{{ is_null(old("description")) ? $request->description : old("description") }}
@if($errors->has("description"))
{{ $errors->first("description") }}
@endif
Presupuesto
budget : old("budget") }}"/> @if($errors->has("budget"))
{{ $errors->first("budget") }}
@endif
Categoría
category : old("category") }}"/> @if($errors->has("category"))
{{ $errors->first("category") }}
@endif
Actualizar
Regresar
@endsection @section('scripts') @endsection