@extends('layouts.app-general') @section('content')

CLIENTES

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif

@if(!isset($user)) Agregar cliente @elseif(strstr(Request::url(), "view")) Ver cliente @else Editar cliente @endif

@if(isset($customer))
@else @endif
@if ($errors->has('name_complete')) {{ $errors->first('name_complete') }} @endif
@if ($errors->has('sex')) {{ $errors->first('sex') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('birth')) {{ $errors->first('birth') }} @endif
@if ($errors->has('identification')) {{ $errors->first('identification') }} @endif
@if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
Volver atras
@endsection