@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Criar Profissional') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content') Dados do Profissional @if ($message = Session::get('success')) × {{ $message }} @endif @if (count($errors) > 0) Ops! Ouve algum problema com o Upload. @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf Nome Tipo de Profissional @foreach ($types as $type) {{ $type->name }} @endforeach CRM Apelido CPF Endereço Cidade Telefone E-mail Salvar @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection