@extends('layout')
@section('content')
{{ Form::model($user,array('url' => 'user/account'))}}
{{ Form::hidden('id') }}
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
{{ Form::label('names','Nombres') }}
{{ Form::text('names',null,array('class' => 'form-control')) }}
@if($errors->has('names'))
{{ $errors->first('names') }}
@endif
{{ Form::label('first_last_name','Apellido Paterno') }}
{{ Form::text('first_last_name',null,array('class' => 'form-control')) }}
@if($errors->has('first_last_name'))
{{ $errors->first('first_last_name') }}
@endif
{{ Form::label('second_last_name','Apellido Materno') }}
{{ Form::text('second_last_name',null,array('class' => 'form-control')) }}
@if($errors->has('second_last_name'))
{{ $errors->first('second_last_name') }}
@endif
{{ Form::label('email','Email') }}
{{ Form::text('email',null,array('class' => 'form-control')) }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::close() }}
@stop