@extends('layouts.logeado') @section('sub_title', 'Actualizar propietario ' . $propietario->PRIMER_NOMBRE . " " . $propietario->PRIMER_APELLIDO . " " . $propietario->SEGUNDO_APELLIDO ) @section('sub_content')
{{ Form::model($propietario, ['route' => $route, 'id'=>'formprop', 'method' => $method] ) }} {{ Form::hidden('id', null) }}
{{ Form::label('DIRECCION', 'Dirección', ['class' => 'label-required col-md-2']) }}
{{ Form::text('DIRECCION', null, ['required', 'class' => 'form-control', 'style' => 'width: 50%']) }} {!! $errors->first('DIRECCION', '

:message

') !!}
{{ Form::label('CELULAR', 'Celular', ['class' => 'label-required col-md-2']) }}
{{ Form::text('CELULAR', null, ['required', 'class' => 'form-control', 'style' => 'width: 50%']) }} {!! $errors->first('CELULAR', '

:message

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

:message

') !!}
{{ Form::label('EMAIL', 'E-mail', ['class' => 'label-required col-md-2']) }}
{{ Form::text('EMAIL', null, ['required', 'class' => 'form-control', 'style' => 'width: 50%']) }} {!! $errors->first('EMAIL', '

:message

') !!}
{{ Form::close() }}
@endsection @section('script') @endsection