@extends('layout') @section('header')
Soluciones / Editar solución
@endsection @section('content') @include('error')
Descripción
{{ is_null(old("description")) ? $solution->description : old("description") }}
@if($errors->has("description"))
{{ $errors->first("description") }}
@endif
Precio
price : old("price") }}"/> @if($errors->has("price"))
{{ $errors->first("price") }}
@endif
Tipo de solución
{{ Form::select('type', ['temporary'=>'Temporal', 'permanent'=>'Permanente'], is_null(old("type")) ? $solution->type : old("type"), ['class' => 'form-control']) }} @if($errors->has("type"))
{{ $errors->first("type") }}
@endif
Actualizar solución
Regresar
@endsection