@if(isset($country))
{!! Form::model($country, ['method' => 'post']) !!}
@else
{!! Form::open(['method' => 'post']) !!}
@endif
{!! Form::label('country', 'Name:')!!}
@if(Request::input('isRegion') or isset($country->parentId))
{!! Form::select('parentId', $countries, null)!!}
@endif
{!! Form::text('title') !!}
{!! Form::token(); !!}
{!! Form::close()!!}