@if(!empty($editcountry))
{{ Form::model($editcountry, array('action' => array('CountryController@update', $editcountry->country_id), 'method' => 'PUT')) }}
*
{{ Form::text('country_name', null, array('class' => 'form-control')) }}
{{ Form::submit('Update Country!', array('class' => 'btn btn-primary')) }}
{{ Form::close() }}
@else
{{ Form::open(array('url' => 'country','action' => array('CountryController@store'), 'method' => 'POST')) }}
*
{{ Form::text('country_name', Input::old('country_name'), array('class' => 'form-control')) }}
{{ Form::submit('Create Country!', array('class' => 'btn btn-primary')) }}
{{ Form::close() }}
@endif