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

Registro control gestión de recuperación cartera{{$gestione->gestione}}

@stop @section('content') @if (session('mensaje'))
{{session('mensaje')}}
@endif
{!! Form::model($gestione,['route'=>['admin.gestiones.update',$gestione], 'method'=>'put']) !!}
{!! Form::label('divipo_id', 'Organismo de Tránsito') !!}
{!! Form::label('divipo_id', 'Nombre Funcionario') !!}
{!! Form::label('tipogestion_id', 'Tipo Gestion') !!} @error('tipogestion_id') {{$message}} @enderror
{!! Form::label('fechaGestion', 'Fecha Gestión') !!} {!! Form::text('fechaGestion', null, ['id'=>'fromDate','class'=>'form-control form-control-sm', 'placeholder'=>'Fecha gestión recuperación cartera']) !!} @error('fechaGestion') {{$message}} @enderror
{!! Form::label('gestionRealizada', 'Gestión realizada') !!} {!! Form::textarea('gestionRealizada', null, ['class'=>'form-control form-control-sm', 'placeholder'=>'Gestión realizada']) !!} @error('gestionRealizada') {{$message}} @enderror
{!! Form::label('user_id', 'Personal que Gestiona') !!} @error('user_id') {{$message}} @enderror
{!! Form::submit('Actualizar registro',['class'=>'btn btn-primary']) !!} Regresar
{!! Form::close() !!}
@stop @section('css') @endsection @section('js') @endsection