@extends('layouts.master') @section('title') {{ trans_choice('general.add',1) }} {{ trans_choice('general.volunteer',1) }} {{ trans_choice('general.role',1) }} @endsection @section('content')

{{ trans_choice('general.add',1) }} {{ trans_choice('general.volunteer',1) }} {{ trans_choice('general.role',1) }}

{!! Form::open(array('url' => url('event/role/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('name',trans_choice('general.name',1),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name',null, array('class' => 'form-control', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('notes',trans_choice('general.note',2),array('class'=>'col-sm-2 control-label')) !!}
{!! Form::textarea('notes',null, array('class' => 'form-control', 'rows'=>"3")) !!}
{!! Form::close() !!}
@endsection