@section('content')

{{ $title }}

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::model($broker, $method, array('class' => 'form-horizontal')) }}
{{ Form::select('brokerage_id', $brokerages, null, array('id' => 'input-brokerage', 'class' => 'form-control')) }}
{{ Form::text('fullname', null, array('id' => 'input-fullname', 'placeholder' => 'Full name', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::text('email', null, array('id' => 'input-email', 'placeholder' => 'Email address', 'class' => 'form-control')) }}
{{ Form::text('phone', null, array('id' => 'input-phone', 'placeholder' => 'Phone', 'class' => 'form-control')) }}
{{ Form::text('cell', null, array('id' => 'input-cell', 'placeholder' => 'Cell Phone', 'class' => 'form-control')) }}
{{ Form::text('website', null, array('id' => 'input-website', 'placeholder' => 'Website', 'class' => 'form-control')) }}
@if(isset($broker) && $broker->picture !='')

Upload new logo, if you want to replace existing one.
@endif {{ Form::file('picture', array('id' => 'input-picture', 'placeholder' => 'Picture')) }}
{{ Form::textarea('bio', null, array('id' => 'input-description', 'placeholder' => 'Bio', 'class' => 'form-control', 'rows' => 10)) }}
Cancel
{{ Form::close() }} @endsection