@extends('template') @section('title', 'Mi Cuenta') @section('content') @if (Auth::guest()) @endif
Bienvenido, {{ Auth::user()->name }} {{ Auth::user()->last_name }}
Mis datos
{{ csrf_field() }}
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('identity')) {{ $errors->first('identity') }} @endif
@if ($errors->has('businnes')) {{ $errors->first('businnes') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('district')) {{ $errors->first('district') }} @endif
@if ($errors->has('cell_phone')) {{ $errors->first('cell_phone') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
@if ($errors->has('department')) {{ $errors->first('department') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{--
--}}
@stop @section('scripts') @stop