@extends('layouts.app')
@section('title','Edita um Plano - '.$plano->ds_nome )
@section('content')
Editar um Plano - {{$plano->ds_nome}}
@if($message = Session::get('success'))
{{$message}}
@endif
@if(count($errors)>0)
@foreach($errors->all() as $error)
- {{$error}}
@endforeach
@endif
@can('delete_plano')
@endcan
@endsection
@section('post-script')
@endsection