@extends('andes.zbase::layout') @section('content')
{!! Breadcrumbs::render('assuntos.editar') !!}

Assuntos do contato

Dados do assunto
{!! Form::model($assunto, ['route'=>['andes.assuntos.salvar', $assunto->id], 'class'=>'form-horizontal form-validate', 'role'=>'form']) !!}
{!! Form::text('nome', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('nome')) {{ $errors->first('nome') }} @endif
{!! Form::email('email', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::submit('Salvar', ['class'=>'btn green']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection