@extends('layouts.message') @section('content')
{{ csrf_field() }} Perfil: @if(Auth::user()->user_type_id == 7) @else @endif @if(Auth::user()->user_type_id == 6) Especialidade: @endif @if(Auth::user()->user_type_id == 5) Segmento: @endif Dados Cadastrais: @if(Auth::user()->user_type_id == 7) @else @endif Endereço: {{ Form::select( 'state_id', ['' => __('Selecione o Estado')]+to_select(states()), old('state_id'), ['id'=>'state', 'autocomplete'=>'state_id']) }} {{ Form::select('city_id', [''=>__('Selecione a Cidade')], old('city_id'), ['id'=>'city', 'autocomplete'=>'city_id']) }} Mídias Sociais:
@endsection