@extends('layouts.logeado') @section('sub_title', 'Editar agencia') @section('sub_content')
{{ Form::model($agencia, ['route' => $route, 'method' => $method] ) }} {{ Form::hidden('id', null) }}
{{ Form::label('NOMBRE', 'Razón social', ['class' => 'label-required col-md-2']) }}
{{ Form::text('NOMBRE', null, ['readonly', 'class' => 'form-control']) }} {!! $errors->first('NOMBRE', '

:message

') !!}
{{ Form::label('NRO_IDENTIFICACION', 'NIT', ['class' => 'label-required col-md-2']) }}
{{ Form::text('NRO_IDENTIFICACION', null, ['readonly', 'class' => 'form-control']) }} {!! $errors->first('NRO_IDENTIFICACION', '

:message

') !!}
{{ Form::label('DIRECCION', 'Dirección', ['class' => 'label-required col-md-2']) }}
{{ Form::text('DIRECCION', null, ['required', 'class' => 'form-control']) }} {!! $errors->first('DIRECCION', '

:message

') !!}
{{ Form::label('TELEFONO', 'Teléfono', ['class' => 'label col-md-2']) }}
{{ Form::text('TELEFONO', null, ['class' => 'form-control']) }} {!! $errors->first('TELEFONO', '

:message

') !!}
{{ Form::label('EMAIL', 'Email', ['class' => 'label col-md-2']) }}
{{ Form::email('EMAIL', null, ['class' => 'form-control']) }} {!! $errors->first('EMAIL', '

:message

') !!}
{!! Form::button('Enviar', ['type' => 'submit', 'class' => 'btn btn-dark']) !!}
{{ Form::close() }}
@endsection