@extends('layouts.app')
@section('title','Edita o Usuário - '.$user->name )
@section('content')
@if($message = Session::get('success'))
{{$message}}
@endif
@if(count($errors)>0)
@foreach($errors->all() as $error)
- {{$error}}
@endforeach
@endif
@endsection
@section('post-script')
@endsection